* remove Python 2.6 code

* add Python 3.12 enhancements
  * split source code into separate files
  * Enum and Flag inherit from stdlib versions
  * support inheriting from empty NamedTuples
  * prevent test_v3.py from being run as main
  * Move Py2/3 specific code to dedicated files

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-aenum?expand=0&rev=24
This commit is contained in:
2023-12-15 11:57:44 +00:00
committed by Git OBS Bridge
parent 06f55777a6
commit e6ff27ea8a

View File

@@ -2,19 +2,13 @@
Thu Dec 14 09:12:26 UTC 2023 - Petr Gajdos <pgajdos@suse.com>
- update to 3.1.15
- remove Python 2.6 code
- add Python 3.12 enhancements
- split source code into separate files
- Enum and Flag inherit from stdlib versions
3.1.12
======
support inheriting from empty NamedTuples
3.1.10
======
prevent test_v3.py from being run as main
3.1.9
=====
Move Py2/3 specific code to dedicated files
* remove Python 2.6 code
* add Python 3.12 enhancements
* split source code into separate files
* Enum and Flag inherit from stdlib versions
* support inheriting from empty NamedTuples
* prevent test_v3.py from being run as main
* Move Py2/3 specific code to dedicated files
-------------------------------------------------------------------
Mon Nov 13 09:13:22 UTC 2023 - Dirk Müller <dmueller@suse.com>