Skip to content

Commit 0b96453

Browse files
authored
feat: Added support for django3.2 (#76)
1 parent eb2e6fa commit 0b96453

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: Python CI
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
77
branches:
88
- '**'
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
os: [ubuntu-20.04]
1717
python-version: ['3.8']
18-
toxenv: ['django22','django30','quality','docs']
18+
toxenv: [django22, django30, django31, django32, quality, docs]
1919

2020
steps:
2121
- uses: actions/checkout@v1

CHANGELOG.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ Unreleased
1515
~~~~~~~~~~
1616
*
1717

18+
[1.1.0] - 2021-07-07
19+
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
20+
* Added support for django 3.1 and 3.2
21+
1822
[1.0.0] - 2021-01-21
1923
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2024
* Dropped python3.5 support.

celery_utils/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
Code to support working with celery.
33
"""
44

5-
__version__ = '1.0.0'
5+
__version__ = '1.1.0'
66

77
default_app_config = 'celery_utils.apps.CeleryUtilsConfig' # pylint: disable=invalid-name

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,9 @@ def is_requirement(line):
8585
'Development Status :: 3 - Alpha',
8686
'Framework :: Django',
8787
'Framework :: Django :: 2.2',
88+
'Framework :: Django :: 3.0',
89+
'Framework :: Django :: 3.1',
90+
'Framework :: Django :: 3.2',
8891
'Intended Audience :: Developers',
8992
'License :: OSI Approved :: Apache Software License',
9093
'Natural Language :: English',

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py38-celery{50}-django{22,30,31}
2+
envlist = py38-celery{50}-django{22,30,31,32}
33

44
[doc8]
55
ignore = D001
@@ -22,6 +22,7 @@ deps =
2222
django22: Django>=2.2,<2.3
2323
django30: Django>=3.0,<3.1
2424
django31: Django>=3.1,<3.2
25+
django32: Django>=3.2,<3.3
2526
celery50: -r{toxinidir}/requirements/celery50.txt
2627
-r{toxinidir}/requirements/test.txt
2728
commands =

0 commit comments

Comments
 (0)