Skip to content

Commit cf7223e

Browse files
fix: Added support for django 42 (#143)
* fix: Added support for django 42 * fix: extra lines removed * fix: error fixed in changelogs.rst * fix: Changelogs updated
1 parent 3c20df2 commit cf7223e

File tree

4 files changed

+9
-6
lines changed

4 files changed

+9
-6
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
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: [quality, django32, django40]
19+
toxenv: [quality, django32, django42]
2020
steps:
2121
- uses: actions/checkout@v3
2222
- name: setup python
@@ -36,7 +36,7 @@ jobs:
3636
run: tox
3737

3838
- name: Run Coverage
39-
if: matrix.python-version == '3.8' && matrix.toxenv=='django32'
39+
if: matrix.python-version == '3.8' && matrix.toxenv=='django42'
4040
uses: codecov/codecov-action@v3
4141
with:
4242
flags: unittests

CHANGELOG.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,11 @@ Change Log
1111

1212
.. There should always be an "Unreleased" section for changes pending release.
1313
14+
[2.3.0] - 2023-08-02
15+
====================
16+
17+
* Added support for Django 4.2
18+
1419
[2.2.0] - 2022-01-20
1520
====================
1621

help_tokens/__init__.py

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

55
from .context_processor import context_processor
66

7-
__version__ = '2.2.0'
8-
9-
default_app_config = 'help_tokens.apps.HelpTokensConfig' # pylint: disable=invalid-name
7+
__version__ = '2.3.0'

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ norecursedirs = .* requirements
1717
[testenv]
1818
deps =
1919
django32: Django>=3.2,<4.0
20-
django40: Django>=4.0,<4.1
20+
django42: Django>=4.2,<4.3
2121
-r{toxinidir}/requirements/test.txt
2222
commands =
2323
python -Wd -m pytest {posargs}

0 commit comments

Comments
 (0)