Skip to content

Commit

Permalink
build: running tests using python 3.11 and 3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
awais786 committed Feb 13, 2024
1 parent c693546 commit df74ce6
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@ jobs:
strategy:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [quality, django32, django42, check_keywords]
python-version: ['3.8', '3.11', '3.12']
toxenv: [quality, django42, check_keywords]

steps:
- uses: actions/checkout@v3
Expand Down
10 changes: 8 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,17 @@ Unreleased

*

Added
~~~~~~~

[4.3.0] - 2024-02-13
--------------------

* Added support for python3.11 and 3.12.

[4.2.0] - 2023-08-03
--------------------

Added
~~~~~~~
* Added support for Django 4.2

[4.1.0] - 2022-01-28
Expand Down
2 changes: 1 addition & 1 deletion auth_backends/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
These package is designed to be used primarily with Open edX Django projects, but should be compatible with non-edX
projects as well.
"""
__version__ = '4.2.0' # pragma: no cover
__version__ = '4.3.0' # pragma: no cover
3 changes: 1 addition & 2 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
[tox]
envlist = py38-django{32,42},quality
envlist = py{38,311,312}-django{42},quality

[pycodestyle]
max-line-length = 120

[testenv]
deps =
django32: Django>=3.2,<4.0
django42: Django>=4.2,<4.3
-r{toxinidir}/requirements/test.txt
commands =
Expand Down

0 comments on commit df74ce6

Please sign in to comment.