Accepting request 451739 from devel:languages:python

1

OBS-URL: https://build.opensuse.org/request/show/451739
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-numpy?expand=0&rev=52
This commit is contained in:
2017-01-25 21:34:53 +00:00
committed by Git OBS Bridge
parent b8838938c2
commit 61d47c6163
7 changed files with 194 additions and 89 deletions

View File

@@ -1,3 +1,69 @@
-------------------------------------------------------------------
Tue Jan 17 17:24:28 UTC 2017 - toddrme2178@gmail.com
- update to version 1.12.0:
* Highlights
+ Order of operations in np.einsum can now be optimized for large
speed improvements.
+ New signature argument to np.vectorize for vectorizing with core
dimensions.
+ The keepdims argument was added to many functions.
+ New context manager for testing warnings
+ Support for BLIS in numpy.distutils
+ Much improved support for PyPy (not yet finished)
* full changelog at:
https://github.com/numpy/numpy/blob/master/doc/release/1.12.0-notes.rst
- changes from version 1.11.3:
* #8341: BUG: Fix ndarray.tofile large file corruption in append
mode.
* #8346: TST: Fix tests in PR #8341 for NumPy 1.11.x
- update to version 1.11.2:
* #7736 BUG: Many functions silently drop 'keepdims' kwarg.
* #7738 ENH: Add extra kwargs and update doc of many MA methods.
* #7778 DOC: Update Numpy 1.11.1 release notes.
* #7793 BUG: MaskedArray.count treats negative axes incorrectly.
* #7816 BUG: Fix array too big error for wide dtypes.
* #7821 BUG: Make sure npy_mul_with_overflow_<type> detects
overflow.
* #7824 MAINT: Allocate fewer bytes for empty arrays.
* #7847 MAINT,DOC: Fix some imp module uses and update f2py.compile
docstring.
* #7849 MAINT: Fix remaining uses of deprecated Python imp module.
* #7851 BLD: Fix ATLAS version detection.
* #7896 BUG: Construct ma.array from np.array which contains
padding.
* #7904 BUG: Fix float16 type not being called due to wrong
ordering.
* #7917 BUG: Production install of numpy should not require nose.
* #7919 BLD: Fixed MKL detection for recent versions of this
library.
* #7920 BUG: Fix for issue #7835 (ma.median of 1d).
* #7932 BUG: Monkey-patch _msvccompile.gen_lib_option like other
compilers.
* #7939 BUG: Check for HAVE_LDOUBLE_DOUBLE_DOUBLE_LE in
npy_math_complex.
* #7953 BUG: Guard against buggy comparisons in generic quicksort.
* #7954 BUG: Use keyword arguments to initialize Extension base
class.
* #7955 BUG: Make sure numpy globals keep identity after reload.
* #7972 BUG: MSVCCompiler grows 'lib' & 'include' env strings
exponentially.
* #8005 BLD: Remove __NUMPY_SETUP__ from builtins at end of
setup.py.
* #8010 MAINT: Remove leftover imp module imports.
* #8020 BUG: Fix return of np.ma.count if keepdims is True and axis
is None.
* #8024 BUG: Fix numpy.ma.median.
* #8031 BUG: Fix np.ma.median with only one non-masked value.
* #8044 BUG: Fix bug in NpyIter buffering with discontinuous arrays.
- update copyright year
- changed from tar.gz to zip on pypi
- Remove long-unused atlas support.
- Use preferrered pypi.io download url.
- Add openBLAS support.
This can improve performance in many situations.
- Remove numpy-1.10.4-cblas.patch since openblas handles this.
-------------------------------------------------------------------
Tue Nov 22 15:56:51 UTC 2016 - toddrme2178@gmail.com