- Update to the official release of 3.0.0:

- The complete list is seriously long, so I would relegate you
    to https://github.com/cython/cython/blob/master/CHANGES.rst
  - The implemented PEPs are:
    - PEP-3131: Supporting Non-ASCII Identifiers
    - PEP-479: generator_stop (enabled by default for language_level=3)
    - PEP-487: Simpler customisation of class creation
    - PEP-563: Postponed Evaluation of Annotations
    - PEP-570: Positional-Only Parameters
    - PEP-572: Assignment Expressions (a.k.a. the walrus operator :=)
    - PEP-590: Vectorcall protocol
    - PEP-614: Relaxing Grammar Restrictions On Decorators
  - Cython supports all released versions of Python from 2.7 to
    3.11 (and some experimental parts of 3.12) inclusive.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-Cython3?expand=0&rev=8
This commit is contained in:
2023-07-19 13:09:25 +00:00
committed by Git OBS Bridge
parent 9c940c203f
commit e19284907f
4 changed files with 25 additions and 8 deletions

View File

@@ -1,3 +1,21 @@
-------------------------------------------------------------------
Wed Jul 19 12:23:38 UTC 2023 - Matej Cepl <mcepl@suse.com>
- Update to the official release of 3.0.0:
- The complete list is seriously long, so I would relegate you
to https://github.com/cython/cython/blob/master/CHANGES.rst
- The implemented PEPs are:
- PEP-3131: Supporting Non-ASCII Identifiers
- PEP-479: generator_stop (enabled by default for language_level=3)
- PEP-487: Simpler customisation of class creation
- PEP-563: Postponed Evaluation of Annotations
- PEP-570: Positional-Only Parameters
- PEP-572: Assignment Expressions (a.k.a. the walrus operator :=)
- PEP-590: Vectorcall protocol
- PEP-614: Relaxing Grammar Restrictions On Decorators
- Cython supports all released versions of Python from 2.7 to
3.11 (and some experimental parts of 3.12) inclusive.
-------------------------------------------------------------------
Wed May 24 15:04:47 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>