diff options
author | adam <adam@pkgsrc.org> | 2022-08-01 07:58:05 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2022-08-01 07:58:05 +0000 |
commit | 5ae6b4ec7e1e3ed610a6d124a87a2b6dbbdeb711 (patch) | |
tree | 27588cea4469236aee003d9145b96dafd0fc9296 /devel/py-cython | |
parent | e9c25ea4e15a4adfa27c037fbb2768ee7e2e6f41 (diff) | |
download | pkgsrc-5ae6b4ec7e1e3ed610a6d124a87a2b6dbbdeb711.tar.gz |
py-cython: updated to 0.29.32
0.29.32 (2022-07-29)
====================
Bugs fixed
----------
* Revert "Using memoryview typed arguments in inner functions is now rejected as unsupported."
* ``from module import *`` failed in 0.29.31 when using memoryviews.
0.29.31 (2022-07-27)
====================
Features added
--------------
* A new argument ``--module-name`` was added to the ``cython`` command to
provide the (one) exact target module name from the command line.
Bugs fixed
----------
* Use ``importlib.util.find_spec()`` instead of the deprecated ``importlib.find_loader()``
function when setting up the package path at import-time.
* Require the C compiler to support the two-arg form of ``va_start``
on Python 3.10 and higher.
* Make ``fused_type`` subscriptable in Shadow.py.
* Fix the incorrect code generation of the target type in ``bytearray`` loops.
* Atomic refcounts for memoryviews were not used on some GCC versions by accident.
* Silence some GCC ``-Wconversion`` warnings in C utility code.
* Tuple multiplication was ignored in expressions such as ``[*(1,) * 2]``.
* Calling ``append`` methods on extension types could fail to find the method
in some cases.
* Ensure that object buffers (e.g. ``ndarray[object, ndim=1]``) containing
``NULL`` pointers are safe to use, returning ``None`` instead of the ``NULL``
pointer.
* Using memoryview typed arguments in inner functions is now rejected as unsupported.
* Compilation could fail on systems (e.g. FIPS) that block MD5 checksums at runtime.
* Experimental adaptations for the CPython "nogil" fork was added.
Note that there is no official support for this in Cython 0.x.
Diffstat (limited to 'devel/py-cython')
-rw-r--r-- | devel/py-cython/Makefile | 4 | ||||
-rw-r--r-- | devel/py-cython/distinfo | 8 |
2 files changed, 6 insertions, 6 deletions
diff --git a/devel/py-cython/Makefile b/devel/py-cython/Makefile index bb74dfacbdf..df9f60b8c5c 100644 --- a/devel/py-cython/Makefile +++ b/devel/py-cython/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.79 2022/05/18 11:37:44 adam Exp $ +# $NetBSD: Makefile,v 1.80 2022/08/01 07:58:05 adam Exp $ -DISTNAME= Cython-0.29.30 +DISTNAME= Cython-0.29.32 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl} CATEGORIES= devel python MASTER_SITES= ${MASTER_SITE_PYPI:=C/Cython/} diff --git a/devel/py-cython/distinfo b/devel/py-cython/distinfo index fd6ce18f302..ee72273b92c 100644 --- a/devel/py-cython/distinfo +++ b/devel/py-cython/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.71 2022/05/18 11:37:44 adam Exp $ +$NetBSD: distinfo,v 1.72 2022/08/01 07:58:05 adam Exp $ -BLAKE2s (Cython-0.29.30.tar.gz) = 7d9ed6906fafe4dd2641ff2c396c30b175515261cc349077cec2bc8748466ee3 -SHA512 (Cython-0.29.30.tar.gz) = 42f681de07d148d95669f0dda9031ba797dd86fa525bacfdf1358ef5aa25b98e4df73e0de0a0d87a1981bca3f8e314169eba8f09431a3582edb2cf2b155876a8 -Size (Cython-0.29.30.tar.gz) = 2085208 bytes +BLAKE2s (Cython-0.29.32.tar.gz) = 54687befc03a4c60b5563c24d648aad15d56dff1993a68a7fc9371a2e21cc38a +SHA512 (Cython-0.29.32.tar.gz) = 2c21e4f130e33ab79a8c2c71e4e14a443c59f35b2ca8ae675ca4c7ccff9e9d940e6724e1fd79b4b23dd94c769c1a94734802200dd6320d0ec4ac5748472a9b03 +Size (Cython-0.29.32.tar.gz) = 2088773 bytes SHA1 (patch-Cython_Distutils_old__build__ext.py) = 2bc705192923cc2f40f7c173625b056caa08f666 SHA1 (patch-Demos_embed_Makefile) = 67c4f662a8d79d39cbf8808d2e87d91a26ef28b9 SHA1 (patch-runtests.py) = 18e970afd950efa2ec5631c0d747ffaee68be2a1 |