Skip to content

Commit 952f167

Browse files
authored
feat: Added support for django3.2 (#26)
1 parent 9a6f3a3 commit 952f167

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [ubuntu-20.04]
1818
python-version: ['3.8']
19-
toxenv: [django22, quality]
19+
toxenv: [django22, quality, django30, django31, django32]
2020
steps:
2121
- uses: actions/checkout@v2
2222
- name: setup python

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ Change Log
1212
.. There should always be an "Unreleased" section for changes pending release.
1313
1414
15+
[2.1.0] - 2020-07-07
16+
====================
17+
18+
* Added support for django3.0, 3.1 and 3.2
19+
1520
[2.0.0] - 2020-01-19
1621
====================
1722

help_tokens/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44

55
from .context_processor import context_processor
66

7-
__version__ = '2.0.0'
7+
__version__ = '2.1.0'
88

99
default_app_config = 'help_tokens.apps.HelpTokensConfig' # pylint: disable=invalid-name

setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,9 @@ def is_requirement(line):
7676
'Development Status :: 5 - Production/Stable',
7777
'Framework :: Django',
7878
'Framework :: Django :: 2.2',
79+
'Framework :: Django :: 3.0',
80+
'Framework :: Django :: 3.1',
81+
'Framework :: Django :: 3.2',
7982
'Intended Audience :: Developers',
8083
'License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)',
8184
'Natural Language :: English',

tox.ini

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

44
[pycodestyle]
55
exclude = .git,.tox,migrations
@@ -15,10 +15,11 @@ addopts = --cov help_tokens --cov-report term-missing --cov-report xml
1515
norecursedirs = .* requirements
1616

1717
[testenv]
18-
deps =
18+
deps =
1919
django22: Django>=2.2,<2.3
2020
django30: Django>=3.0,<3.1
2121
django31: Django>=3.1,<3.2
22+
django32: Django>=3.2,<3.3
2223
-r{toxinidir}/requirements/test.txt
2324
commands =
2425
python -Wd -m pytest {posargs}

0 commit comments

Comments
 (0)