diff --git a/README.rst b/README.rst index 2005c7e..203adb3 100644 --- a/README.rst +++ b/README.rst @@ -26,12 +26,12 @@ Features Requirements ~~~~~~~~~~~~ -- `Django `__ > = 1.11.24 +- `Django `__ > = 2.2 - `Django-picklefield `__ - `Arrow `__ - `Blessed `__ -Tested with: Python 3.6. 3.7 Django 1.11.x and 2.2.x +Tested with: Python 3.7, 3.8 Django 2.2.X and 3.0.X .. warning:: Since Python 3.7 `async` became a reserved keyword and was refactored to `async_task` diff --git a/docs/index.rst b/docs/index.rst index b222315..f2bb418 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -24,7 +24,7 @@ Features - Rollbar and Sentry support -Django Q is tested with: Python 3.6. and 3.7, Django 1.11.x LTS and 2.2.x +Django Q is tested with: Python 3.7 and 3.8, Django 2.2.x and 3.0.x Contents: diff --git a/docs/install.rst b/docs/install.rst index 40ec0a9..12f21a6 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -27,12 +27,12 @@ Installation Requirements ------------ -Django Q is tested for Python 3.6 and 3.7 +Django Q is tested for Python 3.7 and 3.8 - `Django `__ Django Q aims to use as much of Django's standard offerings as possible - The code is tested against Django versions `1.11.x LTS` and `2.1.x`. + The code is tested against Django versions `2.2.x` and `3.0.x`. Please note that Django versions below 2.0 do not support Python 3.7 - `Django-picklefield `__ @@ -126,12 +126,12 @@ Other known issues are: Python ~~~~~~ The code is always tested against the latest version Python 3 and we try to stay compatible with the last two versions of each. -Current tests are performed with 3.6 and 3.7 +Current tests are performed with 3.7 and 3.8 If you do encounter any regressions with earlier versions, please submit an issue on `github `__ .. note:: - Django releases before 1.11 are not officially supported on Python 3.6 + Django releases before 1.11 are not supported on Python 3.6 Django releases before 2.0 are not supported on Python 3.7 Open-source packages @@ -142,10 +142,10 @@ You can reference the `requirements = 3.6 +For this you can always use older releases, but they are no longer maintained. diff --git a/setup.py b/setup.py index 66d691d..0f02666 100644 --- a/setup.py +++ b/setup.py @@ -36,7 +36,7 @@ setup( license='MIT', description='A multiprocessing distributed task queue for Django', long_description=README, - install_requires=['django>=1.11', 'django-picklefield', 'blessed', 'arrow'], + install_requires=['django>=2.2', 'django-picklefield', 'blessed', 'arrow'], test_requires=['pytest', 'pytest-django', ], cmdclass={'test': PyTest}, classifiers=[ @@ -49,9 +49,9 @@ setup( 'Operating System :: MacOS', 'Programming Language :: Python', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Topic :: Internet :: WWW/HTTP', 'Topic :: System :: Distributed Computing', 'Topic :: Software Development :: Libraries :: Python Modules',