Prepare release 1.26.0

python-efl-1.26 v1.26.0
Davide Andreoli 2 years ago
parent fb649f30e7
commit 9896656574
  1. 6
      ChangeLog
  2. 4
      efl/__init__.py
  3. 2
      setup.py

@ -1,11 +1,15 @@
===================
TO BE DONE v1.26.0
2022-02-27 v1.26.0
===================
Changes:
* Switched to setuptools for the build system (can now install from pip again)
* Dropped py2.6 support, minimum is now 2.7
* Deprecated python2 support, with a big-fat-slow warning
* Improved documentation
Fixes:
* Fixed a memory allocation error in EvasSmart
===================

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

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

Loading…
Cancel
Save