diff --git a/ikaaro/__init__.py b/ikaaro/__init__.py index d1f4350e..9f7cf580 100644 --- a/ikaaro/__init__.py +++ b/ikaaro/__init__.py @@ -55,8 +55,11 @@ # The version -__version__ = get_version() - +__version__ = "0.80.2" +__version_info__ = tuple( + int(num) if num.isdigit() else num + for num in __version__.replace("-", ".", 1).split(".") +) # Import required modules from . import users diff --git a/setup.conf b/setup.conf index 7150daf8..cc2ef10c 100644 --- a/setup.conf +++ b/setup.conf @@ -7,6 +7,7 @@ url = "http://www.hforge.org/ikaaro" author_name = "J. David Ibáñez" author_email = "jdavid.ibp@gmail.com" license = "GNU General Public License (GPL)" +version=0.80.2 # Longer description description = "A Content Management System built on Python & itools"