File python2-numpy.changes of Package python2-numpy
996
1
-------------------------------------------------------------------
2
Fri Mar 18 22:42:25 UTC 2022 - Matej Cepl <mcepl@suse.com>
3
4
- Add CVE-2021-41495-retval-PyArray_DescrNew.patch fixing
5
CVE-2021-41495 (bsc#1193911): "Null Pointer Dereference
6
vulnerability exists in numpy.sort in NumPy > and 1.19 in
7
the PyArray_DescrNew function due to missing return-value
8
validation, which allows attackers to conduct DoS attacks by
9
repetitively creating sort arrays." by reviewing return values
10
for PyArray_DescrNew.
11
12
-------------------------------------------------------------------
13
Sun Jan 16 21:25:23 UTC 2022 - Matej Cepl <mcepl@suse.com>
14
15
- bsc#1193913 CVE-2021-33430 fix potential buffer overflow by
16
adding CVE-2021-33430-bufovrflw-ctors-DoS.patch
17
- bsc#1193907 CVE-2021-41496 rewrite creation of the exception
18
message for Fortran files
19
CVE-2021-41496-bufovrflw-fortranobject-DoS.patch
20
21
-------------------------------------------------------------------
22
Fri Sep 6 10:50:41 UTC 2019 - Michel Normand <normand@linux.vnet.ibm.com>
23
24
- as bypass boo#1148173 ignore %check error for ppc64/ppc64le
25
26
-------------------------------------------------------------------
27
Wed Aug 28 15:27:44 UTC 2019 - Todd R <toddrme2178@gmail.com>
28
29
- Update to 1.16.5
30
* ENH: Add project URLs to setup.py
31
* TEST, ENH: fix tests and ctypes code for PyPy
32
* BUG: use npy_intp instead of int for indexing array
33
* TST: Ignore DeprecationWarning during nose imports
34
* BUG: Fix use-after-free in boolean indexing
35
* MAINT/BUG/DOC: Fix errors in _add_newdocs
36
* BUG: fix byte order reversal for datetime64[ns]
37
* MAINT,BUG: Use nbytes to also catch empty descr during allocation
38
* BUG: np.array cleared errors occured in PyMemoryView_FromObject
39
* BUG: Fixes for Undefined Behavior Sanitizer (UBSan) errors.
40
* BUG: ensure that casting to/from structured is properly checked.
41
* MAINT: fix histogram*d dispatchers
42
* BUG: further fixup to histogram2d dispatcher.
43
* BUG: Replace contextlib.suppress for Python 2.7
44
* BUG: fix compilation of 3rd party modules with Py_LIMITED_API...
45
* BUG: Fix memory leak in dtype from dict contructor
46
* DOC: Document array_function at a higher level.
47
* BUG, DOC: add new recfunctions to `__all__`
48
* BUG: Remove stray print that causes a SystemError on python 3.7
49
* TST: Pin pytest version to 5.0.1.
50
* ENH: Enable huge pages in all Linux builds
51
* BUG: fix behavior of structured_to_unstructured on non-trivial...
52
* REL: Prepare for the NumPy 1.16.5 release.
53
54
-------------------------------------------------------------------
55
Mon Jul 29 18:37:55 UTC 2019 - Todd R <toddrme2178@gmail.com>
56
57
- Make sure to provide oldpython names
58
59
-------------------------------------------------------------------
60
Fri Jul 26 20:27:34 UTC 2019 - Todd R <toddrme2178@gmail.com>
61
62
- Add python2-only version since the latest release doesn't
63
support python2.
64
- Remove python3-only patch fix-py34-tests.patch
65
66
-------------------------------------------------------------------
67
Thu May 30 06:51:14 UTC 2019 - Martin Liška <mliska@suse.cz>
68
69
- Disable LTO in order to address boo#1136831.
70
71
-------------------------------------------------------------------
72
Tue May 28 20:37:45 UTC 2019 - Todd R <toddrme2178@gmail.com>
73
74
- update to version 1.16.3
75
* The NumPy 1.16.4 release fixes bugs reported against the 1.16.3 release, and
76
also backports several enhancements from master that seem appropriate for a
77
release series that is the last to support Python 2.7.
78
+ New deprecations
79
* Writeable flag of C-API wrapped arrays
80
+ Compatibility notes
81
* Potential changes to the random stream
82
83
-------------------------------------------------------------------
84
Thu May 16 06:07:59 UTC 2019 - Adrian Schröter <adrian@suse.de>
85
86
- update to version 1.16.3
87
NumPy 1.16.3 Release Notes:
88
The NumPy 1.16.3 release fixes bugs reported against the 1.16.2 release, and
89
also backports several enhancements from master that seem appropriate for a
90
release series that is the last to support Python 2.7. The wheels on PyPI are
91
linked with OpenBLAS v0.3.4+, which should fix the known threading issues
92
found in previous OpenBLAS versions.
93
94
Downstream developers building this release should use Cython >= 0.29.2 and,
95
if using OpenBLAS, OpenBLAS > v0.3.4.
96
97
The most noticeable change in this release is that unpickling object arrays
98
when loading *.npy or *.npz files now requires an explicit opt-in.
99
This backwards incompatible change was made in response to
100
CVE-2019-6446 <https://nvd.nist.gov/vuln/detail/CVE-2019-6446>_.
101
102
Compatibility notes
103
Unpickling while loading requires explicit opt-in
104
The functions np.load, and np.lib.format.read_array take an
105
allow_pickle keyword which now defaults to False in response to
106
CVE-2019-6446 <https://nvd.nist.gov/vuln/detail/CVE-2019-6446>_.
107
108
Improvements
109
Covariance in random.mvnormal cast to double
110
This should make the tolerance used when checking the singular values of the
111
covariance matrix more meaningful.
112
113
Changes
114
__array_interface__ offset now works as documented
115
The interface may use an offset value that was previously mistakenly
116
ignored.
117
118
-------------------------------------------------------------------
119
Fri Mar 29 12:20:01 UTC 2019 - Colleen Murphy <comurphy@suse.com>
120
121
- Fix python sitearch paths for SLE_12_SP3/4
122
123
-------------------------------------------------------------------
124
Mon Mar 25 10:20:50 UTC 2019 - Thomas Bechtold <tbechtold@suse.com>
125
126
- add fix-py34-tests.patch to fix build with python3.4 from SLE12SP4
127
128
-------------------------------------------------------------------
129
Tue Mar 12 21:03:43 CET 2019 - Matej Cepl <mcepl@suse.com>
130
131
- Update to 1.16.2:
132
- Primarily focused on fixing on Windows-related bugs
133
- regression fix correcting signed zeros produced by divmod
134
135
-------------------------------------------------------------------
136
Fri Mar 1 21:42:38 CET 2019 - Matej Cepl <mcepl@suse.com>
137
138
- Use direct number in Version: tag.
139
140
-------------------------------------------------------------------
141
Wed Feb 20 10:43:28 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
142
143
- Do not bother with standard flavor, just make it default
144
- Execute the tests only on standard package for now not hpc variants
145
146
-------------------------------------------------------------------
147
Wed Feb 20 09:28:00 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
148
149
- Add constraints for testsuite to not run out of mem/disk space
150
- Use %license macro
151
152
-------------------------------------------------------------------
153
Tue Feb 19 12:52:51 UTC 2019 - Tomáš Chvátal <tchvatal@suse.com>
154
155
- Enable testsuite
156
157
-------------------------------------------------------------------
158
Tue Feb 5 22:14:25 UTC 2019 - Todd R <toddrme2178@gmail.com>
159
160
- Update to version 1.16.1
161
Changes documented in release notes:
162
https://github.com/numpy/numpy/blob/master/doc/release/1.16.1-notes.rst
163
- Update to version 1.16.0
164
Changes documented in release notes:
165
https://github.com/numpy/numpy/blob/master/doc/release/1.16.0-notes.rst
166
167
-------------------------------------------------------------------
168
Sat Dec 22 04:52:25 UTC 2018 - Todd R <toddrme2178@gmail.com>
169
170
- Update to version 1.15.4
171
Changes documented in release notes:
172
https://github.com/numpy/numpy/blob/master/doc/release/1.15.4-notes.rst
173
174
-------------------------------------------------------------------
175
Fri Oct 26 19:31:40 UTC 2018 - Todd R <toddrme2178@gmail.com>
176
177
- Update to version 1.15.3
178
Changes documented in release notes:
179
https://github.com/numpy/numpy/blob/master/doc/release/1.15.2-notes.rst
180
181
-------------------------------------------------------------------
182
Mon Sep 24 14:56:59 UTC 2018 - Todd R <toddrme2178@gmail.com>
183
184
- Update to version 1.15.2
185
Changes documented in release notes:
186
https://github.com/numpy/numpy/blob/master/doc/release/1.15.2-notes.rst
187
- Update to version 1.15.1
188
Changes documented in release notes:
189
https://github.com/numpy/numpy/blob/master/doc/release/1.15.1-notes.rst
190
- Update to version 1.15.0
191
Changes documented in release notes:
192
https://github.com/numpy/numpy/blob/master/doc/release/1.15.0-notes.rst
193
- Update to version 1.14.6
194
Changes documented in release notes:
195
https://github.com/numpy/numpy/blob/master/doc/release/1.14.6-notes.rst
196
- Rebase numpy-1.9.0-remove-__declspec.patch
197
- Rebase riscv.patch
198
199
-------------------------------------------------------------------
200
Wed Jun 13 18:14:49 UTC 2018 - toddrme2178@gmail.com
201
202
- update to version 1.14.5
203
Changes documented in release notes:
204
https://github.com/numpy/numpy/blob/master/doc/release/1.14.5-notes.rst
205
- update to version 1.14.4
206
Changes documented in release notes:
207
https://github.com/numpy/numpy/blob/master/doc/release/1.14.4-notes.rst
208
209
-------------------------------------------------------------------
210
Thu May 10 16:24:04 UTC 2018 - toddrme2178@gmail.com
211
212
- Fix issues with some targets not having certain versions of
213
openblas
214
215
-------------------------------------------------------------------
216
Sat Apr 28 22:05:55 UTC 2018 - toddrme2178@gmail.com
217
218
- update to version 1.14.3
219
Changes documented in release notes:
220
https://github.com/numpy/numpy/blob/master/doc/release/1.14.3-notes.rst
221
- update to version 1.14.2
222
Changes documented in release notes:
223
https://github.com/numpy/numpy/blob/master/doc/release/1.14.2-notes.rst
224
- update to version 1.14.1
225
Changes documented in release notes:
226
https://github.com/numpy/numpy/blob/master/doc/release/1.14.1-notes.rst
227
228
-------------------------------------------------------------------
229
Tue Feb 13 10:09:18 UTC 2018 - schwab@suse.de
230
231
- riscv.patch: Add support for RISC-V
232
- Don't use openblas on m68k and riscv64
233
- Avoid misparsing of indented conditionals
234
235
-------------------------------------------------------------------
236
Fri Feb 9 14:28:43 UTC 2018 - cgoll@suse.com
237
238
- Fix summary in module files (bnc#1080259)
239
240
-------------------------------------------------------------------
241
Tue Feb 6 09:26:56 UTC 2018 - eich@suse.com
242
243
- The HPC of python-numpy expects openBLAS. OpenBLAS is not availble
244
for sc390: disable buidling on s390 for HPC (bsc#1079513).
245
246
-------------------------------------------------------------------
247
Fri Jan 19 16:17:22 CET 2018 - ro@suse.de
248
249
- add s390 to the ifarch conditional to build without openblas
250
251
-------------------------------------------------------------------
252
Wed Jan 10 09:04:47 UTC 2018 - adrian@suse.de
253
254
- update to version 1.14.0
255
Changes documented in release notes:
256
https://github.com/numpy/numpy/blob/master/doc/release/1.14.0-notes.rst
257
258
-------------------------------------------------------------------
259
Fri Jan 5 19:17:07 UTC 2018 - eich@suse.com
260
261
- Switch from gcc6 to gcc7 as additional compiler flavor for HPC on SLES.
262
- Fix library package requires - use HPC macro (boo#1074890).
263
264
-------------------------------------------------------------------
265
Mon Nov 13 14:17:56 UTC 2017 - eich@suse.com
266
267
- Add 'family "NumPy"' to modules file to avoid that different
268
versions of this get loaded.
269
270
-------------------------------------------------------------------
271
Sun Nov 12 12:49:48 UTC 2017 - eich@suse.com
272
273
- Add Requires for libopenblas to base package.
274
- Add Requires for lua-lmod
275
- Fix '-' in environment variable mane of modulefile.
276
277
-------------------------------------------------------------------
278
Mon Oct 30 19:43:03 UTC 2017 - eich@suse.com
279
280
- Fix Requires: of devel package for openblas.
281
282
-------------------------------------------------------------------
283
Tue Oct 17 14:27:47 UTC 2017 - eich@suse.com
284
285
- Add magic to limit the number of flavors built in the OBS ring
286
to non-HPC builds.
287
288
-------------------------------------------------------------------
289
Tue Oct 3 18:44:35 UTC 2017 - eich@suse.com
290
291
- Convert to multibuild: Add support for HPC environment modules
292
(FATE#321709).
293
294
-------------------------------------------------------------------
295
Sat Sep 30 16:20:39 UTC 2017 - arun@gmx.de
296
297
- updated line numbers in patches
298
299
- update to version 1.13.3:
300
* #9390 BUG: Return the poly1d coefficients array directly
301
* #9555 BUG: Fix regression in 1.13.x in distutils.mingw32ccompiler.
302
* #9556 BUG: Fix true_divide when dtype=np.float64 specified.
303
* #9557 DOC: Fix some rst markup in numpy/doc/basics.py.
304
* #9558 BLD: Remove -xhost flag from IntelFCompiler.
305
* #9559 DOC: Removes broken docstring example (source code, png,
306
pdf)...
307
* #9580 BUG: Add hypot and cabs functions to WIN32 blacklist.
308
* #9732 BUG: Make scalar function elision check if temp is
309
writeable.
310
* #9736 BUG: Various fixes to np.gradient
311
* #9742 BUG: Fix np.pad for CVE-2017-12852 (bsc#1053963)
312
* #9744 BUG: Check for exception in sort functions, add tests
313
* #9745 DOC: Add whitespace after "versionadded::" directive so it
314
actually...
315
* #9746 BUG: Memory leak in np.dot of size 0
316
* #9747 BUG: Adjust gfortran version search regex
317
* #9757 BUG: Cython 0.27 breaks NumPy on Python 3.
318
* #9764 BUG: Ensure _npy_scaled_cexp{,f,l} is defined when needed.
319
* #9765 BUG: PyArray_CountNonzero does not check for exceptions
320
* #9766 BUG: Fixes histogram monotonicity check for unsigned bin
321
values
322
* #9767 BUG: Ensure consistent result dtype of count_nonzero
323
* #9771 BUG: MAINT: Fix mtrand for Cython 0.27.
324
* #9772 DOC: Create the 1.13.2 release notes.
325
* #9794 DOC: Create 1.13.3 release notes.
326
327
- changes from version 1.13.2:
328
* #9390 BUG: Return the poly1d coefficients array directly
329
* #9555 BUG: Fix regression in 1.13.x in distutils.mingw32ccompiler.
330
* #9556 BUG: Fix true_divide when dtype=np.float64 specified.
331
* #9557 DOC: Fix some rst markup in numpy/doc/basics.py.
332
* #9558 BLD: Remove -xhost flag from IntelFCompiler.
333
* #9559 DOC: Removes broken docstring example (source code, png,
334
pdf)...
335
* #9580 BUG: Add hypot and cabs functions to WIN32 blacklist.
336
* #9732 BUG: Make scalar function elision check if temp is
337
writeable.
338
* #9736 BUG: Various fixes to np.gradient
339
* #9742 BUG: Fix np.pad for CVE-2017-12852 (bsc#1053963)
340
* #9744 BUG: Check for exception in sort functions, add tests
341
* #9745 DOC: Add whitespace after "versionadded::" directive so it
342
actually...
343
* #9746 BUG: Memory leak in np.dot of size 0
344
* #9747 BUG: Adjust gfortran version search regex
345
* #9757 BUG: Cython 0.27 breaks NumPy on Python 3.
346
* #9764 BUG: Ensure _npy_scaled_cexp{,f,l} is defined when needed.
347
* #9765 BUG: PyArray_CountNonzero does not check for exceptions
348
* #9766 BUG: Fixes histogram monotonicity check for unsigned bin
349
values
350
* #9767 BUG: Ensure consistent result dtype of count_nonzero
351
* #9771 BUG, MAINT: Fix mtrand for Cython 0.27.
352
353
-------------------------------------------------------------------
354
Mon Sep 18 14:40:26 UTC 2017 - hsk17@mail.de
355
356
- Update to version 1.13.1
357
* bugfix release for problems found in 1.13.0; major changes:
358
+ fixes for the new memory overlap detection and temporary
359
elision
360
+ reversion of the removal of the boolean binary - operator
361
* 1.13.0 Highlights:
362
+ Operations like a + b + c will reuse temporaries on some
363
platforms
364
+ Inplace operations check if inputs overlap outputs and
365
create temporaries
366
+ New __array_ufunc__ attribute provides improved ability for
367
classes to override default ufunc behavior.
368
+ New np.block function for creating blocked arrays.
369
* 1.13.0 New functions:
370
+ New np.positive ufunc.
371
+ New np.divmod ufunc provides more efficient divmod.
372
+ New np.isnat ufunc tests for NaT special values.
373
+ New np.heaviside ufunc computes the Heaviside function.
374
+ New np.isin function, improves on in1d.
375
+ New np.block function for creating blocked arrays.
376
+ New PyArray_MapIterArrayCopyIfOverlap added to NumPy C-API.
377
* deprecations, compatibility notes, etc see full changelog at
378
https://github.com/numpy/numpy/blob/master/doc/changelog/1.13.0-changelog.rst
379
- dropped xlocale.patch (now upstream)
380
- do not apply 'sed 1d' command to exec_command.py
381
382
-------------------------------------------------------------------
383
Wed Jul 5 14:24:59 UTC 2017 - schwab@suse.de
384
385
- Add xlocale.patch:
386
xlocale.h: don't use obsolete <xlocale.h>
387
388
-------------------------------------------------------------------
389
Tue Jun 6 08:15:54 UTC 2017 - manfred99@gmx.ch
390
391
- allow building numpy on fedora by making fdupes dependency optional
392
393
-------------------------------------------------------------------
394
Thu Apr 6 16:44:43 UTC 2017 - toddrme2178@gmail.com
395
396
- Update to version 1.12.1
397
* Fix wrong future nat warning and equiv type logic error...
398
* Fix wrong masked median for some special cases
399
* Place np.average in inline code
400
* Work around isfinite inconsistency on i386
401
* Guard against replacing constants without '_' spec in f2py.
402
* Fix mean for float 16 non-array inputs for 1.12
403
* Fix calling python api with error set and minor leaks for...
404
* Make iscomplexobj compatible with custom dtypes again
405
* Fix undefined behaviour induced by bad __array_wrap__
406
* Fix MaskedArray.__setitem__
407
* PPC64el machines are POWER for Fortran in f2py
408
* Look up methods on MaskedArray in `_frommethod`
409
* Remove extra digit in binary_repr at limit
410
* Fix deepcopy regression for empty arrays.
411
* Fix ma.median for empty ndarrays
412
- Further updates to macro usage.
413
414
-------------------------------------------------------------------
415
Mon Feb 27 18:21:12 UTC 2017 - toddrme2178@gmail.com
416
417
- Fix macro usage.
418
419
-------------------------------------------------------------------
420
Thu Feb 23 18:36:54 UTC 2017 - toddrme2178@gmail.com
421
422
- Fix -devel package dependency
423
424
-------------------------------------------------------------------
425
Fri Feb 17 15:19:37 UTC 2017 - toddrme2178@gmail.com
426
427
- Switch to single-spec version
428
429
-------------------------------------------------------------------
430
Tue Jan 17 17:24:28 UTC 2017 - toddrme2178@gmail.com
431
432
- update to version 1.12.0:
433
* Highlights
434
+ Order of operations in np.einsum can now be optimized for large
435
speed improvements.
436
+ New signature argument to np.vectorize for vectorizing with core
437
dimensions.
438
+ The keepdims argument was added to many functions.
439
+ New context manager for testing warnings
440
+ Support for BLIS in numpy.distutils
441
+ Much improved support for PyPy (not yet finished)
442
* full changelog at:
443
https://github.com/numpy/numpy/blob/master/doc/release/1.12.0-notes.rst
444
- changes from version 1.11.3:
445
* #8341: BUG: Fix ndarray.tofile large file corruption in append
446
mode.
447
* #8346: TST: Fix tests in PR #8341 for NumPy 1.11.x
448
- update to version 1.11.2:
449
* #7736 BUG: Many functions silently drop 'keepdims' kwarg.
450
* #7738 ENH: Add extra kwargs and update doc of many MA methods.
451
* #7778 DOC: Update Numpy 1.11.1 release notes.
452
* #7793 BUG: MaskedArray.count treats negative axes incorrectly.
453
* #7816 BUG: Fix array too big error for wide dtypes.
454
* #7821 BUG: Make sure npy_mul_with_overflow_<type> detects
455
overflow.
456
* #7824 MAINT: Allocate fewer bytes for empty arrays.
457
* #7847 MAINT,DOC: Fix some imp module uses and update f2py.compile
458
docstring.
459
* #7849 MAINT: Fix remaining uses of deprecated Python imp module.
460
* #7851 BLD: Fix ATLAS version detection.
461
* #7896 BUG: Construct ma.array from np.array which contains
462
padding.
463
* #7904 BUG: Fix float16 type not being called due to wrong
464
ordering.
465
* #7917 BUG: Production install of numpy should not require nose.
466
* #7919 BLD: Fixed MKL detection for recent versions of this
467
library.
468
* #7920 BUG: Fix for issue #7835 (ma.median of 1d).
469
* #7932 BUG: Monkey-patch _msvccompile.gen_lib_option like other
470
compilers.
471
* #7939 BUG: Check for HAVE_LDOUBLE_DOUBLE_DOUBLE_LE in
472
npy_math_complex.
473
* #7953 BUG: Guard against buggy comparisons in generic quicksort.
474
* #7954 BUG: Use keyword arguments to initialize Extension base
475
class.
476
* #7955 BUG: Make sure numpy globals keep identity after reload.
477
* #7972 BUG: MSVCCompiler grows 'lib' & 'include' env strings
478
exponentially.
479
* #8005 BLD: Remove __NUMPY_SETUP__ from builtins at end of
480
setup.py.
481
* #8010 MAINT: Remove leftover imp module imports.
482
* #8020 BUG: Fix return of np.ma.count if keepdims is True and axis
483
is None.
484
* #8024 BUG: Fix numpy.ma.median.
485
* #8031 BUG: Fix np.ma.median with only one non-masked value.
486
* #8044 BUG: Fix bug in NpyIter buffering with discontinuous arrays.
487
- update copyright year
488
- changed from tar.gz to zip on pypi
489
- Remove long-unused atlas support.
490
- Use preferrered pypi.io download url.
491
- Add openBLAS support.
492
This can improve performance in many situations.
493
- Remove numpy-1.10.4-cblas.patch since openblas handles this.
494
495
-------------------------------------------------------------------
496
Tue Nov 22 15:56:51 UTC 2016 - toddrme2178@gmail.com
497
498
- Fix cblas handling for SLES 12.
499
500
-------------------------------------------------------------------
501
Mon Sep 12 10:50:33 UTC 2016 - dmueller@suse.com
502
503
- use pypi.io as Source URL
504
505
-------------------------------------------------------------------
506
Tue Sep 6 07:19:07 UTC 2016 - jweberhofer@weberhofer.at
507
508
- Don't include cblas-devel on SLES 12
509
510
-------------------------------------------------------------------
511
Fri Jul 8 09:41:40 UTC 2016 - dmueller@suse.com
512
513
- update to 1.11.1:
514
- #7506 BUG: Make sure numpy imports on python 2.6 when nose is unavailable.
515
- #7530 BUG: Floating exception with invalid axis in np.lexsort.
516
- #7535 BUG: Extend glibc complex trig functions blacklist to glibc < 2.18.
517
- #7551 BUG: Allow graceful recovery for no compiler.
518
- #7558 BUG: Constant padding expected wrong type in constant_values.
519
- #7578 BUG: Fix OverflowError in Python 3.x. in swig interface.
520
- #7590 BLD: Fix configparser.InterpolationSyntaxError.
521
- #7597 BUG: Make np.ma.take work on scalars.
522
- #7608 BUG: linalg.norm(): Don't convert object arrays to float.
523
- #7638 BLD: Correct C compiler customization in system_info.py.
524
- #7654 BUG: ma.median of 1d array should return a scalar.
525
- #7656 BLD: Remove hardcoded Intel compiler flag -xSSE4.2.
526
- #7660 BUG: Temporary fix for str(mvoid) for object field types.
527
- #7665 BUG: Fix incorrect printing of 1D masked arrays.
528
- #7670 BUG: Correct initial index estimate in histogram.
529
- #7671 BUG: Boolean assignment no GIL release when transfer needs API.
530
- #7676 BUG: Fix handling of right edge of final histogram bin.
531
- #7680 BUG: Fix np.clip bug NaN handling for Visual Studio 2015.
532
- #7724 BUG: Fix segfaults in np.random.shuffle.
533
- #7731 MAINT: Change mkl_info.dir_env_var from MKL to MKLROOT.
534
535
536
-------------------------------------------------------------------
537
Mon Apr 4 16:15:27 UTC 2016 - toddrme2178@gmail.com
538
539
specfile:
540
* require setuptools
541
542
- update to version 1.11.0:
543
* Highlights
544
+ The datetime64 type is now timezone naive.
545
+ A dtype parameter has been added to randint.
546
+ Improved detection of two arrays possibly sharing memory.
547
+ Automatic bin size estimation for np.histogram.
548
+ Speed optimization of A @ A.T and dot(A, A.T).
549
+ New function np.moveaxis for reordering array axes.
550
* full changelog at https://github.com/numpy/numpy/blob/master/doc/release/1.11.0-notes.rst
551
552
-------------------------------------------------------------------
553
Wed Mar 30 14:18:43 UTC 2016 - stecue@gmail.com
554
555
- Add numpy-1.10.4-cblas.patch to build against system cblas.
556
Numpy assumes either libblas.so or libcblas.so to contain all CBLAS
557
and BLAS functions. However the cblas-devel in Leap and Tumbleweed
558
contains only the CBLAS interface and libblas.so is also needed.
559
560
-------------------------------------------------------------------
561
Fri Jan 8 09:37:38 UTC 2016 - toddrme2178@gmail.com
562
563
- update to version 1.10.4:
564
* see https://github.com/numpy/numpy/blob/master/doc/release/1.10.4-notes.rst
565
* There is no 1.10.3 due to packaging issues.
566
- update to version 1.10.2:
567
* see https://github.com/numpy/numpy/blob/master/doc/release/1.10.2-notes.rst
568
569
-------------------------------------------------------------------
570
Tue Oct 13 08:24:51 UTC 2015 - toddrme2178@gmail.com
571
572
- Update to 1.10.1
573
+ Bugfix for build problems
574
* Compiling with msvc9 or msvc10 for 32 bit Windows now requires SSE2.
575
This was the easiest fix for what looked to be some miscompiled code when
576
SSE2 was not used. If you need to compile for 32 bit Windows systems
577
without SSE2 support, mingw32 should still work.
578
* Make compiling with VS2008 python2.7 SDK easier
579
* Change Intel compiler options so that code will also be generated to
580
support systems without SSE4.2.
581
* Some _config test functions needed an explicit integer return in
582
order to avoid the openSUSE rpmlinter erring out.
583
* We ran into a problem with pipy not allowing reuse of filenames and a
584
resulting proliferation of *.*.*.postN releases. Not only were the names
585
getting out of hand, some packages were unable to work with the postN
586
suffix.
587
- Remove upstream-included numpy-1.10.0-remove_Wreturn_type_warnings.patch
588
589
-------------------------------------------------------------------
590
Tue Oct 6 09:30:18 UTC 2015 - toddrme2178@gmail.com
591
592
- Update to version 1.10.0
593
+ Highlights
594
* numpy.distutils now supports parallel compilation via the --parallel/-j
595
argument passed to setup.py build
596
* numpy.distutils now supports additional customization via site.cfg to
597
control compilation parameters, i.e. runtime libraries, extra
598
linking/compilation flags.
599
* Addition of *np.linalg.multi_dot*: compute the dot product of two or more
600
arrays in a single function call, while automatically selecting the
601
fastest evaluation order.
602
* The new function `np.stack` provides a general interface for joining a
603
sequence of arrays along a new axis, complementing `np.concatenate` for
604
joining along an existing axis.
605
* Addition of `nanprod` to the set of nanfunctions.
606
* Support for the '@' operator in Python 3.5.
607
+ Dropped Support:
608
* The _dotblas module has been removed. CBLAS Support is now in
609
Multiarray.
610
* The testcalcs.py file has been removed.
611
* The polytemplate.py file has been removed.
612
* npy_PyFile_Dup and npy_PyFile_DupClose have been removed from
613
npy_3kcompat.h.
614
* splitcmdline has been removed from numpy/distutils/exec_command.py.
615
* try_run and get_output have been removed from
616
numpy/distutils/command/config.py
617
* The a._format attribute is no longer supported for array printing.
618
* Keywords ``skiprows`` and ``missing`` removed from np.genfromtxt.
619
* Keyword ``old_behavior`` removed from np.correlate.
620
+ Future Changes:
621
* In array comparisons like ``arr1 == arr2``, many corner cases
622
involving strings or structured dtypes that used to return scalars
623
now issue ``FutureWarning`` or ``DeprecationWarning``, and in the
624
future will be change to either perform elementwise comparisons or
625
raise an error.
626
* The SafeEval class will be removed.
627
* The alterdot and restoredot functions will be removed.
628
- Rebase numpy-1.9.0-remove-__declspec.patch
629
- Add numpy-1.10.0-remove_Wreturn_type_warnings.patch
630
This patch is already merged upstream and should be present in
631
numpy-1.10.1
632
633
-------------------------------------------------------------------
634
Wed Sep 23 07:31:55 UTC 2015 - toddrme2178@gmail.com
635
636
- update to version 1.9.3:
637
* #5866: fix error finding Python headers when build_ext --include-dirs is set;
638
* #6016: fix np.loadtxt error on Python 3.5 when reading from gzip files;
639
* #5555: Replace deprecated options for ifort;
640
* #6096: remove /GL for VS2015 in check_long_double_representation;
641
* #6141: enable Visual Studio 2015 C99 features;
642
* #6171: revert C99 complex for MSVC14.
643
644
-------------------------------------------------------------------
645
Mon Mar 2 15:38:20 UTC 2015 - toddrme2178@gmail.com
646
647
- Update to 1.9.2: Bugfix release
648
* #5316: fix too large dtype alignment of strings and complex types
649
* #5424: fix ma.median when used on ndarrays
650
* #5481: Fix astype for structured array fields of different byte order
651
* #5354: fix segfault when clipping complex arrays
652
* #5524: allow np.argpartition on non ndarrays
653
* #5612: Fixes ndarray.fill to accept full range of uint64
654
* #5155: Fix loadtxt with comments=None and a string None data
655
* #4476: Masked array view fails if structured dtype has datetime component
656
* #5388: Make RandomState.set_state and RandomState.get_state threadsafe
657
* #5390: make seed, randint and shuffle threadsafe
658
* #5374: Fixed incorrect assert_array_almost_equal_nulp documentation
659
* #5393: Add support for ATLAS > 3.9.33.
660
* #5313: PyArray_AsCArray caused segfault for 3d arrays
661
* #5492: handle out of memory in rfftf
662
* #4181: fix a few bugs in the random.pareto docstring
663
* #5359: minor changes to linspace docstring
664
* #4723: fix a compile issues on AIX
665
666
-------------------------------------------------------------------
667
Thu Nov 6 11:38:20 UTC 2014 - toddrme2178@gmail.com
668
669
- Update to 1.9.1: Bugfix release
670
* gh-5184: restore linear edge behaviour of gradient to as it was in < 1.9.
671
The second order behaviour is available via the `edge_order` keyword
672
* gh-4007: workaround Accelerate sgemv crash on OSX 10.9
673
* gh-5100: restore object dtype inference from iterable objects without
674
`len()`
675
* gh-5163: avoid gcc-4.1.2 (red hat 5) miscompilation causing a crash
676
* gh-5138: fix nanmedian on arrays containing inf
677
* gh-5203: copy inherited masks in MaskedArray.__array_finalize__
678
* gh-2317: genfromtxt did not handle filling_values=0 correctly
679
* gh-5067: restore api of npy_PyFile_DupClose in python2
680
* gh-5063: cannot convert invalid sequence index to tuple
681
* gh-5082: Segmentation fault with argmin() on unicode arrays
682
* gh-5095: don't propagate subtypes from np.where
683
* gh-5104: np.inner segfaults with SciPy's sparse matrices
684
* gh-5136: Import dummy_threading if importing threading fails
685
* gh-5148: Make numpy import when run with Python flag '-OO'
686
* gh-5147: Einsum double contraction in particular order causes ValueError
687
* gh-479: Make f2py work with intent(in out)
688
* gh-5170: Make python2 .npy files readable in python3
689
* gh-5027: Use 'll' as the default length specifier for long long
690
* gh-4896: fix build error with MSVC 2013 caused by C99 complex support
691
* gh-4465: Make PyArray_PutTo respect writeable flag
692
* gh-5225: fix crash when using arange on datetime without dtype set
693
* gh-5231: fix build in c99 mode
694
695
-------------------------------------------------------------------
696
Mon Sep 8 10:01:09 UTC 2014 - toddrme2178@gmail.com
697
698
- Update to 1.9.0
699
Highlights
700
* Numerous performance improvements in various areas, most
701
notably indexing and operations on small arrays are
702
significantly faster. Indexing operations now also release the
703
GIL.
704
* Addition of nanmedian and nanpercentile rounds out the
705
nanfunction set.
706
- Remove upstreamed numpy-double-double-le.patch
707
- Add numpy-1.9.0-remove-__declspec.patch
708
Fixes spurious warnings during build. These warnings are related
709
to a windows-specific function that is not built, so the patch
710
just removed the function.
711
See:
712
http://lists.opensuse.org/opensuse-packaging/2014-09/msg00004.html
713
- Added patch tag for numpy-buildfix.patch
714
715
-------------------------------------------------------------------
716
Mon Aug 11 10:09:38 UTC 2014 - toddrme2178@gmail.com
717
718
- Update to 1.8.2: Bugfix release
719
* gh-4836: partition produces wrong results for multiple selections in equal ranges
720
* gh-4656: Make fftpack._raw_fft threadsafe
721
* gh-4628: incorrect argument order to _copyto in in np.nanmax, np.nanmin
722
* gh-4642: Hold GIL for converting dtypes types with fields
723
* gh-4733: fix np.linalg.svd(b, compute_uv=False)
724
* gh-4853: avoid unaligned simd load on reductions on i386
725
* gh-4722: Fix seg fault converting empty string to object
726
* gh-4613: Fix lack of NULL check in array_richcompare
727
* gh-4774: avoid unaligned access for strided byteswap
728
* gh-650: Prevent division by zero when creating arrays from some buffers
729
* gh-4602: ifort has issues with optimization flag O2, use O1
730
- Switch to pypi download location
731
- Changed Url to current home page
732
- Minor spec file cleanups
733
734
-------------------------------------------------------------------
735
Mon Apr 14 05:23:39 UTC 2014 - arun@gmx.de
736
737
- bugfix release 1.8.1
738
739
-------------------------------------------------------------------
740
Thu Dec 5 11:17:52 CET 2013 - mls@suse.de
741
742
- add numpy-double-double-le.patch for ppc64le
743
744
-------------------------------------------------------------------
745
Thu Oct 31 10:17:25 UTC 2013 - toddrme2178@gmail.com
746
747
- Update to 1.8.0
748
Highlights:
749
* New, no 2to3, Python 2 and Python 3 are supported by a common code base.
750
* New, gufuncs for linear algebra, enabling operations on stacked arrays.
751
* New, inplace fancy indexing for ufuncs with the ``.at`` method.
752
* New, ``partition`` function, partial sorting via selection for fast median.
753
* New, ``nanmean``, ``nanvar``, and ``nanstd`` functions skipping NaNs.
754
* New, ``full`` and ``full_like`` functions to create value initialized arrays.
755
* New, ``PyUFunc_RegisterLoopForDescr``, better ufunc support for user dtypes.
756
* Numerous performance improvements in many areas.
757
- Add a new flag to easily enable/disable atlas support for if it
758
ever gets fixed in the future
759
- Rebase numpy-buildfix.patch
760
761
-------------------------------------------------------------------
762
Fri May 3 22:27:24 UTC 2013 - toddrme2178@gmail.com
763
764
- Update to 1.7.1
765
* Bugfixes
766
767
-------------------------------------------------------------------
768
Fri Apr 5 13:20:14 UTC 2013 - idonmez@suse.com
769
770
- Add Source URL, see https://en.opensuse.org/SourceUrls
771
772
-------------------------------------------------------------------
773
Tue Mar 12 06:21:52 UTC 2013 - highwaystar.ru@gmail.com
774
775
- update to 1.7.0
776
* This release includes several new features as well as numerous
777
bug fixes and refactorings
778
Highlights:
779
- ``where=`` parameter to ufuncs (allows the use of boolean
780
arrays to choose where a computation should be done)
781
- ``vectorize`` improvements (added 'excluded' and 'cache'
782
keyword, general cleanup and bug fixes)
783
- ``numpy.random.choice`` (random sample generating function)
784
785
New Features:
786
- Reduction UFuncs Generalize axis= Parameter
787
- Reduction UFuncs New keepdims= Parameter
788
- Datetime support
789
- Custom formatter for printing arrays
790
- New function numpy.random.choice
791
- New function isclose
792
- Preliminary multi-dimensional support in the polynomial package
793
- Ability to pad rank-n arrays
794
- New argument to searchsorted
795
- Added experimental support for the AArch64 architecture.
796
* For additional details check release notes at
797
http://sourceforge.net/projects/numpy/files/NumPy/1.7.0/
798
- numpy-aarch64.diff: removed, now upstream
799
800
-------------------------------------------------------------------
801
Tue Mar 5 22:25:53 UTC 2013 - dmueller@suse.com
802
803
- add numpy-aarch64.diff:
804
* Fix build for AArch64
805
806
-------------------------------------------------------------------
807
Fri Aug 17 08:20:36 UTC 2012 - toddrme2178@gmail.com
808
809
- Disable atlas buildrequires until the problems with atlas are
810
worked out
811
812
-------------------------------------------------------------------
813
Mon Jun 4 15:30:34 UTC 2012 - toddrme2178@gmail.com
814
815
- Add libatlas2 buildrequires
816
817
-------------------------------------------------------------------
818
Fri Jun 1 12:08:16 UTC 2012 - toddrme2178@gmail.com
819
820
- Remove blas/lapack tests since these build successfully on all
821
targets now
822
- Add documentation packages
823
These are separate packages because a lot of packages depend on
824
numpy, so building the documentation inside the base spec file
825
would slow down the build process for the entire project
826
827
-------------------------------------------------------------------
828
Fri Jun 1 11:46:41 CEST 2012 - kukuk@suse.de
829
830
- Old products don't provide python(abi).
831
832
-------------------------------------------------------------------
833
Mon May 21 08:03:11 UTC 2012 - toddrme2178@gmail.com
834
835
- Update to version 1.6.2:
836
* bugfixes
837
838
-------------------------------------------------------------------
839
Fri May 18 08:46:22 UTC 2012 - toddrme2178@gmail.com
840
841
- Fix rpmlint warnings
842
843
-------------------------------------------------------------------
844
Mon Apr 30 15:17:34 UTC 2012 - toddrme2178@gmail.com
845
846
- Removed tests for unsupported openSUSE versions
847
848
-------------------------------------------------------------------
849
Mon Apr 23 16:25:57 UTC 2012 - toddrme2178@gmail.com
850
851
- Add python 3 package
852
- devel package BuildRequires -> Requires
853
854
-------------------------------------------------------------------
855
Sun Apr 15 19:23:41 UTC 2012 - idonmez@suse.com
856
857
- Fix SLE_11 build
858
859
-------------------------------------------------------------------
860
Fri Apr 13 02:56:50 UTC 2012 - badshah400@gmail.com
861
862
- Modify BuildRequires to match recent name changes of lapack and
863
blas in project.
864
865
-------------------------------------------------------------------
866
Sat Oct 01 13:49:14 UTC 2011 - behrisch@users.sf.net
867
868
- Added static lib to devel package for scipy build
869
870
-------------------------------------------------------------------
871
Wed Sep 21 13:04:54 UTC 2011 - saschpe@suse.de
872
873
- Update to version 1.6.1:
874
* Please see http://downloads.sourceforge.net/project/numpy/NumPy/1.6.1/Changelog
875
- Spec file cleanup:
876
* Set license to BSD-3-Clause (SPDX style)
877
* Removed testsuite from packages
878
* Removed rpmlintrc file and actually fixed the issues
879
880
-------------------------------------------------------------------
881
Mon Jan 23 15:07:08 UTC 2011 - toddrme2178@gmail.com
882
883
- update to 1.5.1
884
885
Numpy 1.5.1 is a bug-fix release with no new
886
features compared to 1.5.0.
887
888
Relevant bugs fixed:
889
* linalg: lstsq should always return real residual
890
* lib: fix negative indices in s_ and index_exp
891
* core: fix uint64 -> Python int cast
892
* core: richcompare should return Py_NotImplemented when undefined
893
* lib: close file handles after use in numpy.lib.npyio.*
894
* core: ensure PEP 3118 buffers can be released in exception handler
895
* core: fix clongdouble cast to Python complex()
896
* core: fix detection for ``isfinite`` routine
897
898
-------------------------------------------------------------------
899
Mon Sep 6 08:32:07 UTC 2010 - coolo@novell.com
900
901
- update to 1.5.0 to fix build against python 2.7
902
903
highlights 1.3 -> 1.4:
904
* New datetime dtype support to deal with dates in arrays
905
* Faster import time
906
* Extended array wrapping mechanism for ufuncs
907
* New Neighborhood iterator (C-level only)
908
* C99-like complex functions in npymath
909
910
highlights 1.4 -> 1.5:
911
* support for python3 and python 2.7
912
913
-------------------------------------------------------------------
914
Mon May 31 07:14:03 UTC 2010 - bg@novell.com
915
916
- fix build for hppa
917
918
-------------------------------------------------------------------
919
Fri Jan 15 12:00:00 CET 2010 - aeszter@gwdg.de
920
921
- re-enable build on non-SUSE distros
922
- do not provide python-numeric on Fedora, since a package by that
923
name exists
924
925
-------------------------------------------------------------------
926
Wed Jan 13 16:29:10 UTC 2010 - lars@linux-schulserver.de
927
928
- use a more generic way to define py_sitedir on all targets
929
930
-------------------------------------------------------------------
931
Mon Jan 11 14:57:01 UTC 2010 - coolo@novell.com
932
933
- remerge d:l:p version with O:F version
934
- split -devel package and add support for !suse targets
935
936
-------------------------------------------------------------------
937
Wed Apr 8 19:43:27 CEST 2009 - matejcik@suse.cz
938
939
- update to 1.3.0
940
* official python 2.6 support (although it did (mostly)
941
work before)
942
* new multiarray APIs
943
944
-------------------------------------------------------------------
945
Wed Feb 11 01:31:36 CET 2009 - ro@suse.de
946
947
- fix filelist by using "--record-rpm" instead of "--record"
948
(and do not quote lines starting with "%dir ")
949
950
-------------------------------------------------------------------
951
Wed Feb 4 17:10:04 CET 2009 - matejcik@suse.cz
952
953
- package taken directly from devel:languages:python repository,
954
original changelog follows:
955
956
-------------------------------------------------------------------
957
* Tue Dec 02 2008 - James Oakley <jfunk@funktronics.ca> - 1.2.1-1
958
- Update to 1.2.1
959
960
-------------------------------------------------------------------
961
* Mon Aug 11 2008 - James Oakley <jfunk@funktronics.ca> - 1.1.1-1
962
- Update to 1.1.1:
963
- Python 2.3.x fixes
964
* Robert Kern -- remove development branch of f2py.
965
* Pierre GM -- masked array, fix dictionary update.
966
* Pierre GM -- masked array, fix itertools groupby dependency.
967
* Pierre GM -- masked array, fix use of iterators.
968
* Neil Muller -- fix test dependency on pretty print (#828).
969
- General improvements
970
* David Cournapeau -- scons build fixes/improvements.
971
* Stefan van der Walt -- Howto document updates.
972
* Fernando Perez -- cython updates.
973
* Robert Kern -- PyPI metadata fixes.
974
- Bug fixes
975
* #791 -- Travis Oliphant, std/var not properly calling array_finalize.
976
* #798 -- Stefan van der Walt, piecewise exposes raw memory.
977
* #810 -- David Huard, Verbose argument not effective for ndarrays in assert_equal.
978
* #828 -- Neil Muller, numpy file format format test failures on Solaris.
979
* #825 -- Neil Muller/Charles Harris, SIGBUS in UNICODE_getattr on Sparc Linux.
980
* #837 -- Pauli Virtanen, Infinite loop in fromfile & fromstring
981
* #841 -- Charles Harris, make numpy complex types print like Python.
982
* #843 -- Michael Abbott, reference count error in PyArray_CanCoerceScalar
983
* #844 -- David Cournapeau, failure with numpy inner.
984
* #848 -- Michael Abbott/Charles Harris/Travis Oliphant, reference leak.
985
* #849 -- Michael Abbott, reference to deallocated object.
986
* #850 -- Michael Abbott, memory leak.
987
* #854 -- Pauli Virtanen, Non-standard branch cuts (arccosh).
988
* #857 -- Pierre GM, dividing masked array with newaxis fails.
989
* ------- David Cournapeau, ctypes load_library fix.
990
* ------- Ryan May, Stefan van der Walt, fix loadtxt.
991
* ------- Robert Kern, make numeric.py functions return booleans.
992
* ------- Robert Kern, correct old numeric typecodes.
993
* ------- Robert Kern, fix raising exception in tests.
994
* ------- Robert Kern, make sure Zipf results are in allowable range.
995
* ------- Robert Kern, fix c++ style comment.
996