diff options
author | Dave Andreoli <dave@gurumeditation.it> | 2020-04-30 07:46:20 +0200 |
---|---|---|
committer | Dave Andreoli <dave@gurumeditation.it> | 2020-04-30 07:46:20 +0200 |
commit | bd81c36cd007859e7050a9af2e6a176a14c5ddac (patch) | |
tree | 8b49d34cb0e305d5d4679fbbeca54df032f31d8e | |
parent | 81c48dd2d9b74492caf05abb2f6170205039cea2 (diff) |
Prepare the 1.24 releasev1.24.0python-efl-1.24
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | INSTALL | 4 | ||||
-rw-r--r-- | efl/__init__.py | 4 |
3 files changed, 14 insertions, 3 deletions
@@ -1,5 +1,14 @@ | |||
1 | 1 | ||
2 | =================== | 2 | =================== |
3 | 2020-04-30 v1.24.0 | ||
4 | =================== | ||
5 | |||
6 | Changes: | ||
7 | * Switched to Cython 0.29.16 for the tarball generation | ||
8 | * No more pypi packages uploaded, you must install from tarball | ||
9 | |||
10 | |||
11 | =================== | ||
3 | 2019-10-06 v1.23.0 | 12 | 2019-10-06 v1.23.0 |
4 | =================== | 13 | =================== |
5 | 14 | ||
@@ -8,12 +8,14 @@ | |||
8 | * Cython 0.21 or higher (http://cython.org/) | 8 | * Cython 0.21 or higher (http://cython.org/) |
9 | - Tested with Cython 0.29.16 | 9 | - Tested with Cython 0.29.16 |
10 | 10 | ||
11 | * EFL libs | 11 | * EFL must be the same minor version of the bindings, |
12 | es. python-efl 1.24 need efl 1.24 | ||
12 | 13 | ||
13 | * To build the DOCS you will also need: | 14 | * To build the DOCS you will also need: |
14 | - python-sphinx | 15 | - python-sphinx |
15 | - [optional] graphviz | 16 | - [optional] graphviz |
16 | 17 | ||
18 | * At least 4GB of free RAM to build | ||
17 | 19 | ||
18 | 20 | ||
19 | 2. BUILDING PYTHON-EFL | 21 | 2. BUILDING PYTHON-EFL |
diff --git a/efl/__init__.py b/efl/__init__.py index bc430c3..5eb7e13 100644 --- a/efl/__init__.py +++ b/efl/__init__.py | |||
@@ -20,8 +20,8 @@ | |||
20 | # pre-release: "1.13.0-beta1" ( 1, 13, 0 ) | 20 | # pre-release: "1.13.0-beta1" ( 1, 13, 0 ) |
21 | # release: "1.13.0" ( 1, 13, 0 ) | 21 | # release: "1.13.0" ( 1, 13, 0 ) |
22 | 22 | ||
23 | __version__ = "1.23.99" | 23 | __version__ = "1.24.0" |
24 | __version_info__ = (1, 23, 99) | 24 | __version_info__ = (1, 24, 0) |
25 | 25 | ||
26 | 26 | ||
27 | __all__ = [ | 27 | __all__ = [ |