Path to this page:
Subject: CVS commit: pkgsrc/devel/py-cython
From: Adam Ciarcinski
Date: 2024-04-02 07:58:38
Message id: 20240402055838.4C741FA2C@cvs.NetBSD.org
Log Message:
py-cython: updated to 3.0.10
3.0.10 (2024-03-30)
===================
Bugs fixed
----------
* Cython generated incorrect self-casts when directly calling final methods of \
subtypes.
Patch by Lisandro Dalcin. (Github issue :issue:`2747`)
* Internal C names generated from C function signatures could become too long \
for MSVC.
(Github issue :issue:`6052`)
* The ``noexcept`` warnings could be misleading in some cases.
Patch by Gonzalo TornarĂa. (Github issue :issue:`6087`)
* The ``@cython.ufunc`` implementation could generate incomplete C code.
(Github issue :issue:`6064`)
* The ``libcpp.complex`` declarations could result in incorrect C++ code.
Patch by Raffi Enficiaud. (Github issue :issue:`6037`)
* Several tests were adapted to work with both NumPy 1.x and 2.0.
Patch by Matti Picus. (Github issues :issue:`6076`, :issue:`6100`)
* C compiler warnings when the freelist implementation is disabled (e.g. on \
PyPy) were fixed.
It can now be disabled explicitly with the C macro guard \
``CYTHON_USE_FREELISTS=0``.
(Github issue :issue:`6099`)
* Some C macro guards for feature flags were missing from the NOGIL Python \
configuration.
* Some recently added builtins were unconditionally looked up at module import time
(if used by user code) that weren't available on all Python versions and could thus
fail the import.
* A performance hint regarding exported pxd declarations was improved.
(Github issue :issue:`6001`)
Files: