Compare commits

...

1 Commits

Author SHA1 Message Date
Davide Andreoli 7b5cae318a Maintenance release 1.26.1 2023-10-08 05:39:45 +02:00
3 changed files with 11 additions and 3 deletions

View File

@ -1,3 +1,11 @@
===================
2023-10-08 v1.26.1
===================
Maintenance release:
* rebuilt using Cython 0.29.34 to fix install on python 3.11
===================
2022-02-27 v1.26.0
===================

View File

@ -20,8 +20,8 @@
# pre-release: '1.13.0-beta1' ( 1, 13, 0 )
# release: '1.13.0' ( 1, 13, 0 )
__version__ = '1.26.0'
__version_info__ = (1, 26, 0)
__version__ = '1.26.1'
__version_info__ = (1, 26, 1)
__all__ = [

View File

@ -15,7 +15,7 @@ script_path = os.path.dirname(os.path.abspath(__file__))
# dependencies
EFL_MIN_VER = '1.26.0'
CYTHON_MIN_VERSION = '0.23.5'
CYTHON_MIN_VERSION = '0.29.34'
CYTHON_BLACKLIST = ()