a983803355
- Update to 2.4.2 * Many annotation improvements. * New casting kwarg 'same_value' for casting by value. * New PyUFunc_AddLoopsFromSpec function that can be used to add user sort loops using the ArrayMethod API. * New __numpy_dtype__ protocol. * Setting the strides attribute is deprecated. * Positional out argument to np.maximum, np.minimum is deprecated. * align= must be passed as boolean to np.dtype(). * Assertion and warning control utilities are deprecated. * np.fix is pending deprecation. * in-place modification of ndarray.shape is pending deprecation. * Deprecation of numpy.lib.user_array.container. * Removed deprecated MachAr runtime discovery mechanism. * Raise TypeError on attempt to convert array with ndim > 0 to scalar. * Removed numpy.linalg.linalg and numpy.fft.helper. * Removed interpolation parameter from quantile and percentile functions. * Removed numpy.in1d and numpy.ndindex.ndincr(). * Removed fix_imports parameter from numpy.save. * Removal of four undocumented ndarray.ctypes methods. * Removed newshape parameter from numpy.reshape. * numpy.array2string and numpy.sum deprecations finalized. * Removed some other deprecated functions and arguments. * NumPy's C extension modules have begun to use multi-phase initialisation, as defined by PEP 489. * numpy.round now always returns a copy. * Type-checkers will no longer accept calls to numpy.arange with start as a keyword argument.
Benjamin Greiner2026-02-23 17:19:41 +00:00
79e298ad04
- Add update-meson-1_5_2.patch (gh#numpy/numpy#27531)
Matej Cepl2024-11-22 22:41:51 +00:00
cec9af8115
- Add update-meson-1_5_2.patch (gh#numpy/numpy#27531)
Matej Cepl2024-11-22 22:41:51 +00:00
6e199229d3
Accepting request 1224919 from devel:languages:python:numeric
Ana Guerrero2024-11-20 15:59:12 +00:00
6ca05e5924
Accepting request 1224919 from devel:languages:python:numeric
Ana Guerrero2024-11-20 15:59:12 +00:00
bec1d9ad74
- Revert the switch to openblas, should skip test instead * see discussion at gh#scipy/scipy#21475
Benjamin Greiner2024-11-18 17:24:47 +00:00
743061695f
Accepting request 1224918 from home:bnavigator:branches:devel:languages:python:numeric
Benjamin Greiner2024-11-18 17:24:47 +00:00
4626e6ecc0
Accepting request 1218062 from home:dgarcia:SLFO:Main
Benjamin Greiner2024-10-24 15:05:46 +00:00
950e7d4a41
Accepting request 1217136 from devel:languages:python:numeric
Ana Guerrero2024-10-23 19:07:54 +00:00
3d75a42219
Accepting request 1217136 from devel:languages:python:numeric
Ana Guerrero2024-10-23 19:07:54 +00:00
869ea14cd3
- update to 2.1.2 * #27333: MAINT: prepare 2.1.x for further development * #27400: BUG: apply critical sections around populating the dispatch cache * #27406: BUG: Stub out get_build_msvc_version if distutils.msvccompiler... * #27416: BUILD: fix missing include for std::ptrdiff_t for C++23 language... * #27433: BLD: pin setuptools to avoid breaking numpy.distutils * #27437: BUG: Allow unsigned shift argument for np.roll * #27439: BUG: Disable SVE VQSort * #27471: BUG: rfftn axis bug * #27479: BUG: Fix extra decref of PyArray_UInt8DType. * #27480: CI: use PyPI not scientific-python-nightly-wheels for CI doc... * #27481: MAINT: Check for SVE support on demand * #27484: BUG: initialize the promotion state to be weak * #27501: MAINT: Bump pypa/cibuildwheel from 2.20.0 to 2.21.2 * #27506: BUG: avoid segfault on bad arguments in ndarray.__array_function__
Benjamin Greiner2024-10-23 03:03:14 +00:00
286df3ecab
Accepting request 1186789 from home:bnavigator:branches:devel:languages:python:numeric
Markéta Machová2024-07-16 12:07:33 +00:00
71c6f420cc
Accepting request 1186789 from home:bnavigator:branches:devel:languages:python:numeric
Markéta Machová2024-07-16 12:07:33 +00:00
c73e3af979
- Update to 2.0.0, changes include: * Adds support for array parameter declaration in fortran... * Added `bitwise_count UFuncs * Add binding for random pyx files * Use AVX512-FP16 SVML content for float16 umath functions * allow int sequences as shape arguments in numpy.memmap * Add .mT attribute for arrays * Create complex scalars from real and imaginary parts * add copy parameter for api.reshape function * make use of locals() in a comprehension fully compatible... * Add array API standard v2022.12 support to numpy.array_api * Change string to bool conversions to be consistent with... * Allow np.info on non-hashable objects with a dtype * let zeros, empty, and empty_like accept dtype classes * Bump C-ABI to 2 but accept older NumPy if compiled against... * Use high accuracy SVML for double precision umath functions * expose PyUFunc_GiveFloatingpointErrors in the dtype API * PyObject_IsTrue and PyObject_Not error handling in setflags * array2string does not add signs for positive integers. * Vectorize np.partition and np.argpartition using AVX-512 * Create helper for conversion to arrays * Add size check for threaded array assignment * Finalize fastCopyAndTranpose and other old C-funcs/members... * assert_array_less should report max violations instead of... * Introduce tracer for enabled CPU targets on each optimized... * Extend np.add ufunc to work with unicode and byte dtypes * Add find/rfind ufuncs for unicode and byte dtypes * Make intpssize_t` and introduce characters nN * Add isdigit/isspace/isdecimal/isnumeric ufuncs for string... * DType API slot for descriptor finalization before array...
Steve Kowalik2024-06-28 06:49:16 +00:00
6a44806b32
- Update to 2.0.0, changes include: * Adds support for array parameter declaration in fortran... * Added `bitwise_count UFuncs * Add binding for random pyx files * Use AVX512-FP16 SVML content for float16 umath functions * allow int sequences as shape arguments in numpy.memmap * Add .mT attribute for arrays * Create complex scalars from real and imaginary parts * add copy parameter for api.reshape function * make use of locals() in a comprehension fully compatible... * Add array API standard v2022.12 support to numpy.array_api * Change string to bool conversions to be consistent with... * Allow np.info on non-hashable objects with a dtype * let zeros, empty, and empty_like accept dtype classes * Bump C-ABI to 2 but accept older NumPy if compiled against... * Use high accuracy SVML for double precision umath functions * expose PyUFunc_GiveFloatingpointErrors in the dtype API * PyObject_IsTrue and PyObject_Not error handling in setflags * array2string does not add signs for positive integers. * Vectorize np.partition and np.argpartition using AVX-512 * Create helper for conversion to arrays * Add size check for threaded array assignment * Finalize fastCopyAndTranpose and other old C-funcs/members... * assert_array_less should report max violations instead of... * Introduce tracer for enabled CPU targets on each optimized... * Extend np.add ufunc to work with unicode and byte dtypes * Add find/rfind ufuncs for unicode and byte dtypes * Make intpssize_t` and introduce characters nN * Add isdigit/isspace/isdecimal/isnumeric ufuncs for string... * DType API slot for descriptor finalization before array...
Steve Kowalik2024-06-28 06:49:16 +00:00
c09f910cce
Accepting request 1173659 from devel:languages:python:numeric
Ana Guerrero2024-05-14 11:37:30 +00:00
4897a6189d
Accepting request 1173659 from devel:languages:python:numeric
Ana Guerrero2024-05-14 11:37:30 +00:00
43e93f8cea
Accepting request 1173495 from home:AdaLovelace:branches:devel:languages:python:numeric
Dirk Mueller2024-05-13 12:19:46 +00:00
6a434de4f1
Accepting request 1173495 from home:AdaLovelace:branches:devel:languages:python:numeric
Dirk Mueller2024-05-13 12:19:46 +00:00
0c44f45ff9
Accepting request 1169880 from devel:languages:python:numeric
Ana Guerrero2024-04-24 13:13:47 +00:00
4e9a380469
Accepting request 1169880 from devel:languages:python:numeric
Ana Guerrero2024-04-24 13:13:47 +00:00
33a6f574a9
- Add patch fix-meson-multiple-python-versions.patch: * Ensure meson executes sys.executable when testing Cython.
Steve Kowalik2024-04-23 12:52:48 +00:00
bbffceaed3
- Add patch fix-meson-multiple-python-versions.patch: * Ensure meson executes sys.executable when testing Cython.
Steve Kowalik2024-04-23 12:52:48 +00:00
8ce4520ead
Accepting request 1169084 from devel:languages:python:numeric
Ana Guerrero2024-04-21 18:24:29 +00:00
4b4e7989b0
Accepting request 1169084 from devel:languages:python:numeric
Ana Guerrero2024-04-21 18:24:29 +00:00
ad4bf88387
Accepting request 1168946 from home:bnavigator:branches:devel:languages:python:numeric
Dirk Mueller2024-04-19 08:55:47 +00:00
ead2760a1f
Accepting request 1168946 from home:bnavigator:branches:devel:languages:python:numeric
Dirk Mueller2024-04-19 08:55:47 +00:00
3d7c13b578
Accepting request 1164093 from devel:languages:python:numeric
Ana Guerrero2024-04-03 15:18:42 +00:00
590906bce4
Accepting request 1164093 from devel:languages:python:numeric
Ana Guerrero2024-04-03 15:18:42 +00:00
1dfe7b31d1
Accepting request 1163337 from home:Vogtinator:boo1221902
Markéta Machová2024-04-02 12:06:20 +00:00
c6baf665a0
Accepting request 1163337 from home:Vogtinator:boo1221902
Markéta Machová2024-04-02 12:06:20 +00:00
c7c3450678
Accepting request 1161367 from home:dgarcia:branches:devel:languages:python:numeric
Dirk Mueller2024-03-25 15:25:30 +00:00
0a7ece28a9
Accepting request 1161367 from home:dgarcia:branches:devel:languages:python:numeric
Dirk Mueller2024-03-25 15:25:30 +00:00
211584182a
Accepting request 1139193 from devel:languages:python:numeric
Ana Guerrero2024-01-17 21:14:47 +00:00
12d742dea2
Accepting request 1139193 from devel:languages:python:numeric
Ana Guerrero2024-01-17 21:14:47 +00:00
6dc21206c3
Accepting request 1139053 from home:Andreas_Schwab:Factory
Markéta Machová2024-01-16 15:01:46 +00:00
23c7b95375
Accepting request 1139053 from home:Andreas_Schwab:Factory
Markéta Machová2024-01-16 15:01:46 +00:00
e149f0cb5b
Accepting request 1138114 from home:Simmphonie:branches:devel:languages:python:numeric
Markéta Machová2024-01-15 13:46:02 +00:00
89e5852a3d
Accepting request 1138114 from home:Simmphonie:branches:devel:languages:python:numeric
Markéta Machová2024-01-15 13:46:02 +00:00
a6763b3e9b
Accepting request 1135309 from home:ecsos:python
Matej Cepl2024-01-04 09:47:47 +00:00
c0c91f1623
Accepting request 1135309 from home:ecsos:python
Matej Cepl2024-01-04 09:47:47 +00:00
6b81c58c75
Accepting request 1132800 from devel:languages:python:numeric
Ana Guerrero2023-12-14 21:02:25 +00:00
7db6cd0920
Accepting request 1132800 from devel:languages:python:numeric
Ana Guerrero2023-12-14 21:02:25 +00:00
7fcebde335
- Do not attempt to ship numpy.distutils C code in the Python 3.12 -devel package, it is not installed.
Steve Kowalik2023-12-13 06:54:44 +00:00
f08bf94230
- Do not attempt to ship numpy.distutils C code in the Python 3.12 -devel package, it is not installed.
Steve Kowalik2023-12-13 06:54:44 +00:00
56fa262a6d
Accepting request 1127600 from devel:languages:python:numeric
Ana Guerrero2023-11-22 17:54:02 +00:00
4aa4b2c83d
Accepting request 1127600 from devel:languages:python:numeric
Ana Guerrero2023-11-22 17:54:02 +00:00
58f55e2775
- Update to 1.26.2: * TYP: Trim down the `_NestedSequence.__getitem__ signature * BUG: fix choose refcount leak * TST: fix running the test suite in builds without BLAS/LAPACK * BUG: random: Fix generation of nan by dirichlet. * TST: fix distutils tests for deprecations in recent setuptools... * MAINT: Remove versioneer * MAINT: Pin upper version of sphinx. * ENH: Add prefix to _ALIGN Macro * BUG: cleanup warnings [skip azp][skip circle][skip travis][skip... * BUG: asv dev has been removed, use asv run. * BUG: Fix meson build failure due to unchanged inplace auto-generated... * BUG: fix issue with git-version script, needs a shebang to run * BUG: Use a default assignment for git_hash [skip ci] * BUG: fix NPY_cast_info error handling in choose * BUG: Fix common block handling in f2py * BUG: Fix assumed length f2py regression * MAINT: Harmonize fortranobject * TYP: add kind argument to numpy.isin type specification * BUG: fix comparisons between masked and unmasked structured arrays * ENH: Adopt new macOS Accelerate BLAS/LAPACK Interfaces, including... * TYP: Add the missing casting keyword to np.clip * TST: convert cython test from setup.py to meson * MAINT: Fixup fromnumeric.pyi * BUG, ENH: Fix iso_c_binding type maps * TYP: Allow binary_repr to accept any object * TYP: Explicitly declare dtype and generic hashable * ENH: Refactor the typing "reveal" tests using typing.assert_type * ENH: meson backend for f2py` * MAINT: Refactor partial load Workaround for Clang
Steve Kowalik2023-11-20 05:10:29 +00:00
959db8da65
- Update to 1.26.2: * TYP: Trim down the `_NestedSequence.__getitem__ signature * BUG: fix choose refcount leak * TST: fix running the test suite in builds without BLAS/LAPACK * BUG: random: Fix generation of nan by dirichlet. * TST: fix distutils tests for deprecations in recent setuptools... * MAINT: Remove versioneer * MAINT: Pin upper version of sphinx. * ENH: Add prefix to _ALIGN Macro * BUG: cleanup warnings [skip azp][skip circle][skip travis][skip... * BUG: asv dev has been removed, use asv run. * BUG: Fix meson build failure due to unchanged inplace auto-generated... * BUG: fix issue with git-version script, needs a shebang to run * BUG: Use a default assignment for git_hash [skip ci] * BUG: fix NPY_cast_info error handling in choose * BUG: Fix common block handling in f2py * BUG: Fix assumed length f2py regression * MAINT: Harmonize fortranobject * TYP: add kind argument to numpy.isin type specification * BUG: fix comparisons between masked and unmasked structured arrays * ENH: Adopt new macOS Accelerate BLAS/LAPACK Interfaces, including... * TYP: Add the missing casting keyword to np.clip * TST: convert cython test from setup.py to meson * MAINT: Fixup fromnumeric.pyi * BUG, ENH: Fix iso_c_binding type maps * TYP: Allow binary_repr to accept any object * TYP: Explicitly declare dtype and generic hashable * ENH: Refactor the typing "reveal" tests using typing.assert_type * ENH: meson backend for f2py` * MAINT: Refactor partial load Workaround for Clang
Steve Kowalik2023-11-20 05:10:29 +00:00
adfbe5f872
Accepting request 1112791 from devel:languages:python:numeric
Ana Guerrero2023-09-21 20:20:26 +00:00
a297cced4d
Accepting request 1112791 from devel:languages:python:numeric
Ana Guerrero2023-09-21 20:20:26 +00:00
c5479985d3
f2py using update-alternatives (catched by openQA, bsc#1166678, boo#1176832).
Dirk Mueller2023-09-21 10:54:16 +00:00
1873446802
f2py using update-alternatives (catched by openQA, bsc#1166678, boo#1176832).
Dirk Mueller2023-09-21 10:54:16 +00:00
8307078259
Accepting request 1110295 from devel:languages:python:numeric
Ana Guerrero2023-09-11 19:20:34 +00:00