diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 582059d..ecad64f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -5,8 +5,8 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python-version: [ 3.6, 3.7, 3.8 ] - django: [ "2.2", "3.1" ] + python-version: [ 3.7, 3.8, 3.9 ] + django: [ "2.2", "3.2" ] services: disque: image: efrecon/disque:1.0-rc1 diff --git a/README.rst b/README.rst index 78f32eb..a2293bd 100644 --- a/README.rst +++ b/README.rst @@ -31,7 +31,7 @@ Requirements - `Arrow `__ - `Blessed `__ -Tested with: Python 3.7, 3.8 Django 2.2.X and 3.1.X +Tested with: Python 3.7, 3.8, 3.9 Django 2.2.X and 3.2.X .. warning:: Since Python 3.7 `async` became a reserved keyword and was refactored to `async_task` diff --git a/docs/install.rst b/docs/install.rst index 78d4aea..b1e274a 100644 --- a/docs/install.rst +++ b/docs/install.rst @@ -27,12 +27,12 @@ Installation Requirements ------------ -Django Q is tested for Python 3.7 and 3.8 +Django Q is tested for Python 3.7, 3.8 and 3.9 - `Django `__ Django Q aims to use as much of Django's standard offerings as possible - The code is tested against Django versions `2.2.x` and `3.1.x`. + The code is tested against Django versions `2.2.x` and `3.2.x`. Please note that Django versions below 2.0 do not support Python 3.7 - `Django-picklefield `__ diff --git a/pyproject.toml b/pyproject.toml index 9d77ca9..e7e7d3c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,6 +25,7 @@ classifiers=[ 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Internet :: WWW/HTTP', 'Topic :: System :: Distributed Computing', 'Topic :: Software Development :: Libraries :: Python Modules', diff --git a/setup.py b/setup.py index fad9c0c..f8a35f7 100644 --- a/setup.py +++ b/setup.py @@ -53,6 +53,7 @@ setup( 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', 'Topic :: Internet :: WWW/HTTP', 'Topic :: System :: Distributed Computing', 'Topic :: Software Development :: Libraries :: Python Modules',