forked from pool/python-numpy
Accepting request 761226 from home:TheBlackCat:branches:devel:languages:python:numeric
- update to version 1.18.0:
+ Highlights
* The C-API for ``numpy.random`` has been defined and documented.
* Basic infrastructure for linking with 64 bit BLAS and LAPACK libraries.
* Many documentation improvements.
+ New functions
* Multivariate hypergeometric distribution added to ``numpy.random``
+ Deprecations
* ``np.fromfile`` and ``np.fromstring`` will error on bad data
* Deprecate non-scalar arrays as fill values in ``ma.fill_value``
* Deprecate ``PyArray_As1D``, ``PyArray_As2D``
* Deprecate ``np.alen``
* Deprecate the financial functions
* The ``axis`` argument to ``numpy.ma.mask_cols`` and ``numpy.ma.mask_row`` is deprecated
+ Expired deprecations
* ``PyArray_As1D`` and ``PyArray_As2D`` have been removed in favor of
``PyArray_AsCArray``
* ``np.rank`` has been removed. This was deprecated in NumPy 1.10
and has been replaced by ``np.ndim``.
* The deprecation of ``expand_dims`` out-of-range axes in 1.13.0 has
expired.
* ``PyArray_FromDimsAndDataAndDescr`` and ``PyArray_FromDims`` have been
removed (they will always raise an error). Use ``PyArray_NewFromDescr``
and ``PyArray_SimpleNew`` instead.
* ``numeric.loads``, ``numeric.load``, ``np.ma.dump``,
``np.ma.dumps``, ``np.ma.load``, ``np.ma.loads`` are removed,
use ``pickle`` methods instead
* ``arrayprint.FloatFormat``, ``arrayprint.LongFloatFormat`` has been removed,
use ``FloatingFormat`` instead
* ``arrayprint.ComplexFormat``, ``arrayprint.LongComplexFormat`` has been
removed, use ``ComplexFloatingFormat`` instead
* ``arrayprint.StructureFormat`` has been removed, use ``StructureVoidFormat``
instead
* ``np.testing.rand`` has been removed. This was deprecated in NumPy 1.11
and has been replaced by ``np.random.rand``.
* Class ``SafeEval`` in ``numpy/lib/utils.py`` has been removed.
This was deprecated in NumPy 1.10. Use ``np.safe_eval`` instead.
* Remove deprecated support for boolean and empty condition lists in
``np.select``
* Array order only accepts 'C', 'F', 'A', and 'K'. More permissive options
were deprecated in NumPy 1.11.
* np.linspace parameter ``num`` must be an integer. Deprecated in NumPy 1.12.
* UFuncs with multiple outputs must use a tuple for the ``out`` kwarg. This
finishes a deprecation started in NumPy 1.10.
* The files ``numpy/testing/decorators.py``, ``numpy/testing/noseclasses.py``
and ``numpy/testing/nosetester.py`` have been removed. They were never
meant to be public (all relevant objects are present in the
``numpy.testing`` namespace), and importing them has given a deprecation
warning since NumPy 1.15.0
+ Compatibility notes
* `numpy.lib.recfunctions.drop_fields` can no longer return None
* ``numpy.argmin/argmax/min/max`` returns ``NaT`` if it exists in array
* ``np.can_cast(np.uint64, np.timedelta64, casting='safe')`` is now ``False``
* Changed random variate stream from ``numpy.random.Generator.integers``
* Add more ufunc loops for ``datetime64``, ``timedelta64``
* Moved modules in ``numpy.random``
+ C API changes
* ``PyDataType_ISUNSIZED(descr)`` now returns False for structured datatypes
+ New Features
* Add our own ``*.pxd`` cython import file
* A tuple of axes can now be input to ``expand_dims``
* Support for 64-bit OpenBLAS
* Add ``--f2cmap`` option to F2PY
+ Improvements
* Different C numeric types of the same size have unique names
* ``argwhere`` now produces a consistent result on 0d arrays
* Add ``axis`` argument for ``random.permutation`` and ``random.shuffle``
* ``method`` keyword argument for ``np.random.multivariate_normal``
* Add complex number support for ``numpy.fromstring``
* ``numpy.unique`` has consistent axes order when ``axis`` is not None
* ``numpy.matmul`` with boolean output now converts to boolean values
* ``numpy.random.randint`` produced incorrect value when the range was ``2**32``
* Add complex number support for ``numpy.fromfile``
* ``std=c99`` added if compiler is named ``gcc``
+ Changes
* ``NaT`` now sorts to the end of arrays
* Incorrect ``threshold`` in ``np.set_printoptions`` raises ``TypeError`` or ``ValueError``
* Warn when saving a dtype with metadata
* ``numpy.distutils`` append behavior changed for LDFLAGS and similar
* Remove ``numpy.random.entropy`` without a deprecation
* Add options to quiet build configuration and build with ``-Werror``
OBS-URL: https://build.opensuse.org/request/show/761226
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=47
This commit is contained in:
committed by
Git OBS Bridge
parent
90c21abf98
commit
a95f1ac5e7
@@ -1,3 +1,89 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Jan 6 15:34:51 UTC 2020 - Todd R <toddrme2178@gmail.com>
|
||||
|
||||
- update to version 1.18.0:
|
||||
+ Highlights
|
||||
* The C-API for ``numpy.random`` has been defined and documented.
|
||||
* Basic infrastructure for linking with 64 bit BLAS and LAPACK libraries.
|
||||
* Many documentation improvements.
|
||||
+ New functions
|
||||
* Multivariate hypergeometric distribution added to ``numpy.random``
|
||||
+ Deprecations
|
||||
* ``np.fromfile`` and ``np.fromstring`` will error on bad data
|
||||
* Deprecate non-scalar arrays as fill values in ``ma.fill_value``
|
||||
* Deprecate ``PyArray_As1D``, ``PyArray_As2D``
|
||||
* Deprecate ``np.alen``
|
||||
* Deprecate the financial functions
|
||||
* The ``axis`` argument to ``numpy.ma.mask_cols`` and ``numpy.ma.mask_row`` is deprecated
|
||||
+ Expired deprecations
|
||||
* ``PyArray_As1D`` and ``PyArray_As2D`` have been removed in favor of
|
||||
``PyArray_AsCArray``
|
||||
* ``np.rank`` has been removed. This was deprecated in NumPy 1.10
|
||||
and has been replaced by ``np.ndim``.
|
||||
* The deprecation of ``expand_dims`` out-of-range axes in 1.13.0 has
|
||||
expired.
|
||||
* ``PyArray_FromDimsAndDataAndDescr`` and ``PyArray_FromDims`` have been
|
||||
removed (they will always raise an error). Use ``PyArray_NewFromDescr``
|
||||
and ``PyArray_SimpleNew`` instead.
|
||||
* ``numeric.loads``, ``numeric.load``, ``np.ma.dump``,
|
||||
``np.ma.dumps``, ``np.ma.load``, ``np.ma.loads`` are removed,
|
||||
use ``pickle`` methods instead
|
||||
* ``arrayprint.FloatFormat``, ``arrayprint.LongFloatFormat`` has been removed,
|
||||
use ``FloatingFormat`` instead
|
||||
* ``arrayprint.ComplexFormat``, ``arrayprint.LongComplexFormat`` has been
|
||||
removed, use ``ComplexFloatingFormat`` instead
|
||||
* ``arrayprint.StructureFormat`` has been removed, use ``StructureVoidFormat``
|
||||
instead
|
||||
* ``np.testing.rand`` has been removed. This was deprecated in NumPy 1.11
|
||||
and has been replaced by ``np.random.rand``.
|
||||
* Class ``SafeEval`` in ``numpy/lib/utils.py`` has been removed.
|
||||
This was deprecated in NumPy 1.10. Use ``np.safe_eval`` instead.
|
||||
* Remove deprecated support for boolean and empty condition lists in
|
||||
``np.select``
|
||||
* Array order only accepts 'C', 'F', 'A', and 'K'. More permissive options
|
||||
were deprecated in NumPy 1.11.
|
||||
* np.linspace parameter ``num`` must be an integer. Deprecated in NumPy 1.12.
|
||||
* UFuncs with multiple outputs must use a tuple for the ``out`` kwarg. This
|
||||
finishes a deprecation started in NumPy 1.10.
|
||||
* The files ``numpy/testing/decorators.py``, ``numpy/testing/noseclasses.py``
|
||||
and ``numpy/testing/nosetester.py`` have been removed. They were never
|
||||
meant to be public (all relevant objects are present in the
|
||||
``numpy.testing`` namespace), and importing them has given a deprecation
|
||||
warning since NumPy 1.15.0
|
||||
+ Compatibility notes
|
||||
* `numpy.lib.recfunctions.drop_fields` can no longer return None
|
||||
* ``numpy.argmin/argmax/min/max`` returns ``NaT`` if it exists in array
|
||||
* ``np.can_cast(np.uint64, np.timedelta64, casting='safe')`` is now ``False``
|
||||
* Changed random variate stream from ``numpy.random.Generator.integers``
|
||||
* Add more ufunc loops for ``datetime64``, ``timedelta64``
|
||||
* Moved modules in ``numpy.random``
|
||||
+ C API changes
|
||||
* ``PyDataType_ISUNSIZED(descr)`` now returns False for structured datatypes
|
||||
+ New Features
|
||||
* Add our own ``*.pxd`` cython import file
|
||||
* A tuple of axes can now be input to ``expand_dims``
|
||||
* Support for 64-bit OpenBLAS
|
||||
* Add ``--f2cmap`` option to F2PY
|
||||
+ Improvements
|
||||
* Different C numeric types of the same size have unique names
|
||||
* ``argwhere`` now produces a consistent result on 0d arrays
|
||||
* Add ``axis`` argument for ``random.permutation`` and ``random.shuffle``
|
||||
* ``method`` keyword argument for ``np.random.multivariate_normal``
|
||||
* Add complex number support for ``numpy.fromstring``
|
||||
* ``numpy.unique`` has consistent axes order when ``axis`` is not None
|
||||
* ``numpy.matmul`` with boolean output now converts to boolean values
|
||||
* ``numpy.random.randint`` produced incorrect value when the range was ``2**32``
|
||||
* Add complex number support for ``numpy.fromfile``
|
||||
* ``std=c99`` added if compiler is named ``gcc``
|
||||
+ Changes
|
||||
* ``NaT`` now sorts to the end of arrays
|
||||
* Incorrect ``threshold`` in ``np.set_printoptions`` raises ``TypeError`` or ``ValueError``
|
||||
* Warn when saving a dtype with metadata
|
||||
* ``numpy.distutils`` append behavior changed for LDFLAGS and similar
|
||||
* Remove ``numpy.random.entropy`` without a deprecation
|
||||
* Add options to quiet build configuration and build with ``-Werror``
|
||||
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Sat Nov 16 17:51:25 UTC 2019 - Arun Persaud <arun@gmx.de>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user