Skip to content

Commit 31da6e2

Browse files
fix: Added support for Django 42 (#266)
1 parent f89d3e3 commit 31da6e2

4 files changed

Lines changed: 12 additions & 5 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
matrix:
1616
os: [ubuntu-20.04]
1717
python-version: ['3.8']
18-
toxenv: [quality, django32, django40]
18+
toxenv: [quality, django32, django42]
1919

2020
steps:
2121
- uses: actions/checkout@v3
@@ -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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,13 @@ Unreleased
1414

1515
*
1616

17+
[4.2.0] - 2023-08-03
18+
--------------------
19+
20+
Added
21+
~~~~~~~
22+
* Added support for Django 4.2
23+
1724
[4.1.0] - 2022-01-28
1825
--------------------
1926

auth_backends/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@
33
These package is designed to be used primarily with Open edX Django projects, but should be compatible with non-edX
44
projects as well.
55
"""
6-
__version__ = '4.1.0' # pragma: no cover
6+
__version__ = '4.2.0' # pragma: no cover

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[tox]
2-
envlist = py38-django{32,40},quality
2+
envlist = py38-django{32,42},quality
33

44
[pycodestyle]
55
max-line-length = 120
66

77
[testenv]
88
deps =
99
django32: Django>=3.2,<4.0
10-
django40: Django>=4.0,<4.1
10+
django42: Django>=4.2,<4.3
1111
-r{toxinidir}/requirements/test.txt
1212
commands =
1313
pytest {posargs}

0 commit comments

Comments
 (0)