From 8108816be2c09bec6db48eee721e786164c9c48a Mon Sep 17 00:00:00 2001 From: Ramez Issac Date: Wed, 25 Dec 2019 20:25:12 +0200 Subject: [PATCH] Adds Django 3 support --- CHANGELOG.md | 4 ++++ README.rst | 2 +- docs/source/index.rst | 1 + setup.cfg | 3 ++- 4 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bc3d283..2bb923f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,11 +3,15 @@ All notable changes to this project are/will be documented in this file. ## [Unreleased] + +## [0.0.9] - 2019-12-25 ### Added - Added changelog, docs/faq - Drop Use of Django Braces +- Support For Django 3 - Upgrade Django to >= 2.2.9 + ## [0.0.8] - 2019-12-18 ### Added - Activity Tests diff --git a/README.rst b/README.rst index fe33063..88e5d24 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ Features - A widget system to display reports and its charts on dashboard home , or on object's `view` pages. - Tools and goodies to extend and customize the framework behavior from top to bottom. - Python 3.6 / 3.7 / 3.8 -- Django 2.2 Compatible (Django 3.0 compatible coming soon following `Django-braces `_ ) +- Django 2.2, 3.0 Compatible Dependencies diff --git a/docs/source/index.rst b/docs/source/index.rst index 5a2dfb7..5a33b03 100644 --- a/docs/source/index.rst +++ b/docs/source/index.rst @@ -12,6 +12,7 @@ Features - A widget system to display reports and its charts on dashboard home , or on object's `view` pages. - Tools and goodies to extend and customize the framework behavior from top to bottom. - Python 3.6 / 3.7 / 3.8 +- Django 2.2 / 3.0 .. toctree:: diff --git a/setup.cfg b/setup.cfg index 8a7178c..717aa33 100644 --- a/setup.cfg +++ b/setup.cfg @@ -16,6 +16,7 @@ classifiers = Environment :: Web Environment Framework :: Django Framework :: Django :: 2.2 + Framework :: Django :: 3.0 Intended Audience :: Developers Development Status :: 3 - Alpha License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+) @@ -41,7 +42,7 @@ packages = find: python_requires = >=3.6 install_requires= pytz - django==2.2.9 + django>=2.2.9 psycopg2-binary simplejson django-crequest==2018.5.11