From 4ce314c2c9c8356a6b648b1f150750c33657e37b Mon Sep 17 00:00:00 2001 From: Iacopo Spalletti Date: Wed, 25 Dec 2019 10:45:39 +0100 Subject: [PATCH] Pin formtools for django 1.11 (#357) --- HISTORY.rst | 5 +++++ djangocms_installer/config/data.py | 3 ++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/HISTORY.rst b/HISTORY.rst index d3050be..c7b0b22 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,11 @@ History ------- +1.2.1 (unreleased) +++++++++++++++++++ + +* Pinned formtools version on django 1.11 to avoid python 2 issues + 1.2.0 (2019-11-04) ++++++++++++++++++ diff --git a/djangocms_installer/config/data.py b/djangocms_installer/config/data.py index f7e9908..d7f2b27 100644 --- a/djangocms_installer/config/data.py +++ b/djangocms_installer/config/data.py @@ -19,7 +19,7 @@ ) DJANGOCMS_BETA = DJANGOCMS_RC DJANGOCMS_36 = 'django-cms>=3.6,<3.7' -DJANGOCMS_37 = 'django-cms>=3.7' +DJANGOCMS_37 = 'django-cms>=3.7,<3.8' if sys.version_info >= (3, 5): DJANGOCMS_SUPPORTED = ('3.6', '3.7', 'stable', 'lts', 'develop', 'rc') @@ -83,6 +83,7 @@ 'django-classy-tags>=0.9', 'django-sekizai>=1.0', 'django-mptt>0.9', + 'django-formtools>=2.1,<2.2', ], 'django-2.0': [ 'django-classy-tags>=0.9',