14
0
forked from pool/python-Cython

- update to 3.0.7:

* In the iterator of generator expressions, ``await`` and
    ``yield`` were not correctly analysed.
  * ``cpdef`` enums with the same name cimported from different
    modules could lead to invalid C code.
  * Some declarations in ``cpython.unicode`` were fixed and
    extended.
  * Compiling fused types used in pxd files could crash Cython in
    Python 3.11+.
  * Source files with non-ASCII file names could crash Cython.
  * Includes all bug-fixes and features from the 0.29 maintenance
    branch

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=190
This commit is contained in:
2023-12-21 16:15:45 +00:00
committed by Git OBS Bridge
parent fce4b999ef
commit 9feb72ee1a
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Thu Dec 21 16:15:20 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.0.7:
* In the iterator of generator expressions, ``await`` and
``yield`` were not correctly analysed.
* ``cpdef`` enums with the same name cimported from different
modules could lead to invalid C code.
* Some declarations in ``cpython.unicode`` were fixed and
extended.
* Compiling fused types used in pxd files could crash Cython in
Python 3.11+.
* Source files with non-ASCII file names could crash Cython.
* Includes all bug-fixes and features from the 0.29 maintenance
branch
-------------------------------------------------------------------
Mon Nov 27 08:49:57 UTC 2023 - Dirk Müller <dmueller@suse.com>