pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/math/py-numpy py-numpy: updated to 1.22.4



details:   https://anonhg.NetBSD.org/pkgsrc/rev/e837aa005b26
branches:  trunk
changeset: 379741:e837aa005b26
user:      adam <adam%pkgsrc.org@localhost>
date:      Sun May 22 19:14:00 2022 +0000

description:
py-numpy: updated to 1.22.4

1.22.4:
TYP, BUG: Fix ``np.lib.stride_tricks`` re-exported under the...
TST: Bump mypy from 0.931 to 0.940
MAINT: Explicitly re-export the types in ``numpy._typing``
MAINT: Specify sphinx, numpydoc versions for CI doc builds
BUG: Fix typos
ENH, BLD: Fix math feature detection for wasm
MAINT: Fix failing simd and cygwin tests.
MAINT: Fix failing Python 3.8 32-bit Windows test.
BUG: add linux guard
BUG: Allow legacy dtypes to cast to datetime again
BUG: Make mmap handling safer in frombuffer
BUG: Stop using PyBytesObject.ob_shash deprecated in Python 3.11.
ENH: Introduce numpy.core.setup_common.NPY_CXX_FLAGS
BUG: Ensure compile errors are raised correclty
BUG: Fix segmentation fault
MAINT: Update doc requirements
MAINT: Mark ``npy_memchr`` with ``no_sanitize("alignment")`` on clang
DOC: Proposal - make the doc landing page cards more similar...
MAINT: Update Cython version to 0.29.30.
BUG: Fix GCC error during build configuration
REL: Prepare for the NumPy 1.22.4 release.
MAINT: Skip tests that fail on PyPy.

diffstat:

 math/py-numpy/Makefile                          |   4 ++--
 math/py-numpy/distinfo                          |  10 +++++-----
 math/py-numpy/patches/patch-numpy_core_setup.py |  18 +++---------------
 3 files changed, 10 insertions(+), 22 deletions(-)

diffs (63 lines):

diff -r 13a3db4d1aef -r e837aa005b26 math/py-numpy/Makefile
--- a/math/py-numpy/Makefile    Sun May 22 19:05:00 2022 +0000
+++ b/math/py-numpy/Makefile    Sun May 22 19:14:00 2022 +0000
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.92 2022/05/08 10:18:31 nia Exp $
+# $NetBSD: Makefile,v 1.93 2022/05/22 19:14:00 adam Exp $
 
-DISTNAME=      numpy-1.22.3
+DISTNAME=      numpy-1.22.4
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=n/numpy/}
diff -r 13a3db4d1aef -r e837aa005b26 math/py-numpy/distinfo
--- a/math/py-numpy/distinfo    Sun May 22 19:05:00 2022 +0000
+++ b/math/py-numpy/distinfo    Sun May 22 19:14:00 2022 +0000
@@ -1,9 +1,9 @@
-$NetBSD: distinfo,v 1.71 2022/04/12 11:50:33 tnn Exp $
+$NetBSD: distinfo,v 1.72 2022/05/22 19:14:00 adam Exp $
 
-BLAKE2s (numpy-1.22.3.zip) = 8add725a5f6a438218d1df65e832acf84264fcdf59eaf006b5f80c4b492f0905
-SHA512 (numpy-1.22.3.zip) = fdeefd0ffad798a078376fe16ad840551309d3bbf551eca09d92a35048ee75c3739ab0becedb23448d82999da148827e69ded8842201c3dda72b46b4eb9be93f
-Size (numpy-1.22.3.zip) = 11451867 bytes
-SHA1 (patch-numpy_core_setup.py) = 57659fe39504adc789a14016c5a43d7b898789b4
+BLAKE2s (numpy-1.22.4.zip) = 020700e15b661d064377106b6c3ecd5959c524e32cc2f3d1b97739894bbbcff8
+SHA512 (numpy-1.22.4.zip) = bb2993459157c43f8c419de98be1c832f108b4eb6b96e1d20f406eccd782681ad8d0f8653637962ac592abe7d75719c17678ec97f035f6c87d4c7f939a1a8a48
+Size (numpy-1.22.4.zip) = 11458830 bytes
+SHA1 (patch-numpy_core_setup.py) = 9e2388dd0de7f31994d3b27c10e439acd3ca1a03
 SHA1 (patch-numpy_core_src_npymath_npy__math__private.h) = e3b8e751fd0b6b6c6794d714aa5f60dfe9d7f421
 SHA1 (patch-numpy_distutils_fcompiler_____init____.py) = 49d070da5b48bd9818b37ac3254341fa68503c53
 SHA1 (patch-numpy_distutils_fcompiler_g95.py) = be73b64a3e551df998b6a904d6db762bf28a98ed
diff -r 13a3db4d1aef -r e837aa005b26 math/py-numpy/patches/patch-numpy_core_setup.py
--- a/math/py-numpy/patches/patch-numpy_core_setup.py   Sun May 22 19:05:00 2022 +0000
+++ b/math/py-numpy/patches/patch-numpy_core_setup.py   Sun May 22 19:14:00 2022 +0000
@@ -1,14 +1,10 @@
-$NetBSD: patch-numpy_core_setup.py,v 1.6 2022/04/12 11:50:34 tnn Exp $
+$NetBSD: patch-numpy_core_setup.py,v 1.7 2022/05/22 19:14:00 adam Exp $
 
 Use C language (not F77 from blas_info); fixes library name on Darwin.
 
-Don't redefine -D__STDC_VERSION__=0 on the command line. It is almost
-certainly the wrong thing to do and breaks the build completely on
-modern SunOS.
-
---- numpy/core/setup.py.orig   2022-03-06 17:04:34.000000000 +0000
+--- numpy/core/setup.py.orig   2022-05-20 05:46:10.000000000 +0000
 +++ numpy/core/setup.py
-@@ -816,6 +816,7 @@ def configuration(parent_package='',top_
+@@ -868,6 +868,7 @@ def configuration(parent_package='',top_
  
      if have_blas:
          extra_info = blas_info
@@ -16,11 +12,3 @@
          # These files are also in MANIFEST.in so that they are always in
          # the source distribution independently of HAVE_CBLAS.
          common_src.extend([join('src', 'common', 'cblasfuncs.c'),
-@@ -1038,7 +1039,6 @@ def configuration(parent_package='',top_
-                          extra_objects=svml_objs,
-                          extra_info=extra_info,
-                          extra_cxx_compile_args=['-std=c++11',
--                                                 '-D__STDC_VERSION__=0',
-                                                  '-fno-exceptions',
-                                                  '-fno-rtti'])
- 



Home | Main Index | Thread Index | Old Index