14
0
forked from pool/python-Cython

- update to 3.0.8:

* Using const together with defined fused types could fail to
    compile. (Github issue :issue:`5230`)
  * A "use after free" bug was fixed in parallel sections.
    (Github issue :issue:`5922`)
  * Several types were not available as cython.* types in pure
    Python code.
  * The generated code is now correct C89 again, removing some
    C++ style // comments and C99-style declaration-after-code
    code ordering.  This is still relevant for some ols C
    compilers, specifically ones that match old Python 2.7
    installations.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython?expand=0&rev=194
This commit is contained in:
2024-01-14 15:37:01 +00:00
committed by Git OBS Bridge
parent e429bbc379
commit 92d163182f
4 changed files with 20 additions and 4 deletions

View File

@@ -1,3 +1,19 @@
-------------------------------------------------------------------
Sun Jan 14 15:30:24 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 3.0.8:
* Using const together with defined fused types could fail to
compile. (Github issue :issue:`5230`)
* A "use after free" bug was fixed in parallel sections.
(Github issue :issue:`5922`)
* Several types were not available as cython.* types in pure
Python code.
* The generated code is now correct C89 again, removing some
C++ style // comments and C99-style declaration-after-code
code ordering. This is still relevant for some ols C
compilers, specifically ones that match old Python 2.7
installations.
-------------------------------------------------------------------
Tue Jan 2 22:01:07 UTC 2024 - Dirk Müller <dmueller@suse.com>