From 824ea483abc40c0548e7d7f3ea251ccc1c538bdc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois=20Magimel?= Date: Sun, 21 Oct 2018 21:42:09 +0200 Subject: [PATCH] Requirements: migrate to django 2.1 Ref #16 --- CHANGELOG.md | 1 + requirements.txt | 2 +- setup.py | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6eb28b7..5309a83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ Release notes ---------------- - Dependencies: update Cerealizer to 0.8.2 +- Dependencies: update Django to 2.1 1.1 (2018-06-16) diff --git a/requirements.txt b/requirements.txt index d7c6bbc..4f03c60 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,3 +1,3 @@ -Django>=2.0,<2.1 +Django>=2.1,<2.2 django-bootstrap3>=9,<10 Cerealizer==0.8.2 diff --git a/setup.py b/setup.py index 2f3a305..92722a4 100644 --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ platforms='any', zip_safe=True, install_requires=[ - "django >= 2.0", + "django >= 2.1", "django-bootstrap3 >= 9.0", "cerealizer == 0.8.2", ], @@ -26,7 +26,7 @@ "Development Status :: 4 - Beta", "Environment :: Web Environment", "Framework :: Django", - "Framework :: Django :: 1.11", + "Framework :: Django :: 2.1", "Intended Audience :: End Users/Desktop", "License :: OSI Approved :: GNU General Public License (GPL)", "Natural Language :: English",