From 052fa9f4cbd18368a94fd1bde916cd743a502d73 Mon Sep 17 00:00:00 2001 From: j Date: Wed, 6 Jun 2018 12:35:28 +0200 Subject: [PATCH] fix version definition --- content_plugins/__init__.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/content_plugins/__init__.py b/content_plugins/__init__.py index 39e1225..433c34d 100644 --- a/content_plugins/__init__.py +++ b/content_plugins/__init__.py @@ -1,8 +1,7 @@ from django.conf import settings - -VERSION = (0, 2, 0) -__version__ = '.'.join(map(str, VERSION)) +__version__ = '0.2.0' +VERSION = tuple(int(d) for d in __version__.split('.')) USE_TRANSLATABLE_FIELDS = (