pkgsrc-Changes archive

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

CVS commit: pkgsrc/math/py-numexpr



Module Name:    pkgsrc
Committed By:   wiz
Date:           Sun Sep 11 15:55:44 UTC 2022

Modified Files:
        pkgsrc/math/py-numexpr: Makefile distinfo

Log Message:
py-numexpr: update to 2.8.3.

Changes from 2.8.1 to 2.8.3
---------------------------

* 2.8.2 was skipped due to an error in uploading to PyPi.
* Support for Python 3.6 has been dropped due to the need to substitute the flag
  `NPY_ARRAY_WRITEBACKIFCOPY` for `NPY_ARRAY_UPDATEIFCOPY`. This flag change was
  initiated in NumPy 1.14 and finalized in 1.23. The only changes were made to
  cases where an unaligned constant was passed in with a pre-allocated output
  variable:

```
    x = np.empty(5, dtype=np.uint8)[1:].view(np.int32)
    ne.evaluate('3', out=x)
```

  We think the risk of issues is very low, but if you are using NumExpr as a
  expression evaluation tool you may want to write a test for this edge case.
* Thanks to Matt Einhorn (@matham) for improvements to the GitHub Actions build process to
  add support for Apple Silicon and aarch64.
* Thanks to Biswapriyo Nath (@biswa96) for a fix to allow `mingw` builds on Windows.
* There have been some changes made to not import `platform.machine()` on `sparc`
  but it is highly advised to upgrade to Python 3.9+ to avoid this issue with
  the Python core package `platform`.


To generate a diff of this commit:
cvs rdiff -u -r1.25 -r1.26 pkgsrc/math/py-numexpr/Makefile
cvs rdiff -u -r1.21 -r1.22 pkgsrc/math/py-numexpr/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/math/py-numexpr/Makefile
diff -u pkgsrc/math/py-numexpr/Makefile:1.25 pkgsrc/math/py-numexpr/Makefile:1.26
--- pkgsrc/math/py-numexpr/Makefile:1.25        Fri Apr 15 11:27:41 2022
+++ pkgsrc/math/py-numexpr/Makefile     Sun Sep 11 15:55:43 2022
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.25 2022/04/15 11:27:41 nia Exp $
+# $NetBSD: Makefile,v 1.26 2022/09/11 15:55:43 wiz Exp $
 
-DISTNAME=      numexpr-2.8.1
+DISTNAME=      numexpr-2.8.3
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
 CATEGORIES=    math python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=n/numexpr/}

Index: pkgsrc/math/py-numexpr/distinfo
diff -u pkgsrc/math/py-numexpr/distinfo:1.21 pkgsrc/math/py-numexpr/distinfo:1.22
--- pkgsrc/math/py-numexpr/distinfo:1.21        Tue Jan  4 23:35:37 2022
+++ pkgsrc/math/py-numexpr/distinfo     Sun Sep 11 15:55:43 2022
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.21 2022/01/04 23:35:37 wiz Exp $
+$NetBSD: distinfo,v 1.22 2022/09/11 15:55:43 wiz Exp $
 
-BLAKE2s (numexpr-2.8.1.tar.gz) = b615ab70bd587321becffbffbb535547320b76fb91deeb7d00f26d68644f1396
-SHA512 (numexpr-2.8.1.tar.gz) = e948051e2a19530270be4b328625bbd7b51c5030aeb78fe8e58b4bb2f28ff927a579d0e003b9bcb35ced1fa6a7bf507f1b72932a940224c9876dd86d7370d899
-Size (numexpr-2.8.1.tar.gz) = 94824 bytes
+BLAKE2s (numexpr-2.8.3.tar.gz) = bacae1a4917817ffc53d5480cd3f30859ce12319f88a1ddefe2c1037cfe9bf3d
+SHA512 (numexpr-2.8.3.tar.gz) = 21f841715be9752d210eb9a9cb516cbeb59af999f20d8c3f68acf0cc2fa8670800e64aaceee492e205c12ddf4057982e3a3e0872f5b548352b8db40848fb6597
+Size (numexpr-2.8.3.tar.gz) = 98436 bytes



Home | Main Index | Thread Index | Old Index