Skip to content

Commit

Permalink
feat: Added support for django3.2 (#119)
Browse files Browse the repository at this point in the history
* feat: Added support for django3.2
  • Loading branch information
Jawayria authored Jul 9, 2021
1 parent f3ffe59 commit ff192b9
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ['3.8']
toxenv: [django22, django30, quality]
toxenv: [django22, django30, django31, django32, quality]

steps:
- uses: actions/checkout@v2
Expand Down
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,14 @@ Unreleased

*

[3.4.0] - 2021-07-07
--------------------

Added
~~~~~~~

* Added support for django 3.1 and 3.2

[3.3.3] - 2021-02-02
--------------------

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__ = '3.3.3' # pragma: no cover
__version__ = '3.4.0' # pragma: no cover
3 changes: 3 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ def is_requirement(line):
'Programming Language :: Python :: 3.8',
'Framework :: Django',
'Framework :: Django :: 2.2',
'Framework :: Django :: 3.0',
'Framework :: Django :: 3.1',
'Framework :: Django :: 3.2',
'Topic :: Internet',
],
keywords='authentication edx',
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py38-django{22,30,31},quality
envlist = py38-django{22,30,31,32},quality

[pycodestyle]
max-line-length = 120
Expand All @@ -9,6 +9,7 @@ deps =
django22: Django>=2.2,<2.3
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
django32: Django>=3.2,<3.3
-r{toxinidir}/requirements/test.txt
commands =
pytest {posargs}
Expand Down

0 comments on commit ff192b9

Please sign in to comment.