diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3537006..2d270ea 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -2,7 +2,7 @@ name: Python CI on: push: - branches: [ master ] + branches: [master] pull_request: branches: - '**' @@ -15,7 +15,7 @@ jobs: matrix: os: [ubuntu-20.04] python-version: ['3.8'] - toxenv: ['django22','django30','quality','docs'] + toxenv: [django22, django30, django31, django32, quality, docs] steps: - uses: actions/checkout@v1 diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4b49657..1bef6e2 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -15,6 +15,10 @@ Unreleased ~~~~~~~~~~ * +[1.1.0] - 2021-07-07 +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ +* Added support for django 3.1 and 3.2 + [1.0.0] - 2021-01-21 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ * Dropped python3.5 support. diff --git a/celery_utils/__init__.py b/celery_utils/__init__.py index 652cdd8..55f3255 100644 --- a/celery_utils/__init__.py +++ b/celery_utils/__init__.py @@ -2,6 +2,6 @@ Code to support working with celery. """ -__version__ = '1.0.0' +__version__ = '1.1.0' default_app_config = 'celery_utils.apps.CeleryUtilsConfig' # pylint: disable=invalid-name diff --git a/setup.py b/setup.py index f66ddc4..37b2751 100644 --- a/setup.py +++ b/setup.py @@ -85,6 +85,9 @@ def is_requirement(line): 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Framework :: Django :: 2.2', + 'Framework :: Django :: 3.0', + 'Framework :: Django :: 3.1', + 'Framework :: Django :: 3.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', diff --git a/tox.ini b/tox.ini index 437917c..83ee3f2 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py38-celery{50}-django{22,30,31} +envlist = py38-celery{50}-django{22,30,31,32} [doc8] ignore = D001 @@ -22,6 +22,7 @@ deps = django22: Django>=2.2,<2.3 django30: Django>=3.0,<3.1 django31: Django>=3.1,<3.2 + django32: Django>=3.2,<3.3 celery50: -r{toxinidir}/requirements/celery50.txt -r{toxinidir}/requirements/test.txt commands =