Accepting request 1030219 from home:bnavigator:branches:devel:languages:python:numeric

- Update to 1.23.4
  * NumPy 1.23.4 is a maintenance release that fixes bugs
    discovered after the 1.23.3 release and keeps the build
    infrastructure current. The main improvements are fixes for
    some annotation corner cases, a fix for a long time
    nested_iters memory leak, and a fix of complex vector dot for
    very large arrays. The Python versions supported for this
    release are 3.8-3.11.

OBS-URL: https://build.opensuse.org/request/show/1030219
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-numpy?expand=0&rev=109
This commit is contained in:
Matej Cepl 2022-10-20 18:06:15 +00:00 committed by Git OBS Bridge
parent d95e460342
commit 812da66f8e
4 changed files with 17 additions and 10 deletions

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:51bf49c0cd1d52be0a240aa66f3458afc4b95d8993d2d04f0d91fa60c10af6cd
size 10726039

3
numpy-1.23.4.tar.gz Normal file
View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ed2cc92af0efad20198638c69bb0fc2870a58dabfba6eb722c933b48556c686c
size 10728765

View File

@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Oct 20 13:48:08 UTC 2022 - Ben Greiner <code@bnavigator.de>
- Update to 1.23.4
* NumPy 1.23.4 is a maintenance release that fixes bugs
discovered after the 1.23.3 release and keeps the build
infrastructure current. The main improvements are fixes for
some annotation corner cases, a fix for a long time
nested_iters memory leak, and a fix of complex vector dot for
very large arrays. The Python versions supported for this
release are 3.8-3.11.
-------------------------------------------------------------------
Tue Oct 11 08:27:00 UTC 2022 - Ben Greiner <code@bnavigator.de>

View File

@ -17,8 +17,8 @@
%global flavor @BUILD_FLAVOR@%{nil}
%define ver 1.23.3
%define _ver 1_23_3
%define ver 1.23.4
%define _ver 1_23_4
%define pname python-numpy
%define hpc_upcase_trans_hyph() %(echo %{**} | tr [a-z] [A-Z] | tr '-' '_')
%if "%{flavor}" == ""
@ -260,11 +260,6 @@ mkdir -p testing
cp pytest.ini testing/
pushd testing
# Python 3.10 deprecated distutils. This is going to be fixed in numpy 1.22 gh#numpy/numpy#20419
echo ' ignore:.*distutils.*:DeprecationWarning' >> pytest.ini
# Fixed in numpy 1.21.5 - gh#numpy/numpy#20467
echo ' ignore:.*load_module.*:DeprecationWarning' >> pytest.ini
# flaky tests
test_failok+=" or test_structured_object_indexing"
test_failok+=" or test_structured_object_item_setting"