1
0

Accepting request 862018 from home:apersaud:branches:devel:languages:python:numeric

update to latest version

OBS-URL: https://build.opensuse.org/request/show/862018
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numexpr?expand=0&rev=13
This commit is contained in:
2021-01-10 15:28:57 +00:00
committed by Git OBS Bridge
parent 2cc7f26ee2
commit b29615cae2
4 changed files with 32 additions and 5 deletions

View File

@@ -1,3 +1,30 @@
-------------------------------------------------------------------
Sat Jan 9 20:01:06 UTC 2021 - Arun Persaud <arun@gmx.de>
- specfile:
* update copyright year
- update to version 2.7.2:
* Support for Python 2.7 and 3.5 is deprecated and will be
discontinued when cibuildwheels and/or GitHub Actions no longer
support these versions.
* Wheels are now provided for Python 3.7, 3.5, 3.6, 3.7, 3.8, and
3.9 via GitHub Actions.
* The block size is now exported into the namespace as
numexpr.__BLOCK_SIZE1__ as a read-only value.
* If using MKL, the number of threads for VML is no longer forced to
1 on loading the module. Testing has shown that VML never runs in
multi-threaded mode for the default BLOCKSIZE1 of 1024 elements,
and forcing to 1 can have deleterious effects on NumPy functions
when built with MKL. See issue #355 for details.
* Use of ndarray.tostring() in tests has been switch to
ndarray.tobytes() for future-proofing deprecation of .tostring(),
if the version of NumPy is greater than 1.9.
* Added a utility method get_num_threads that returns the (maximum)
number of threads currently in use by the virtual machine. The
functionality of set_num_threads whereby it returns the previous
value has been deprecated and will be removed in 2.8.X.
-------------------------------------------------------------------
Wed Jan 8 18:04:17 UTC 2020 - Todd R <toddrme2178@gmail.com>