Skip to content

Commit

Permalink
Deprecates Django 3
Browse files Browse the repository at this point in the history
  • Loading branch information
iMerica committed Nov 3, 2024
1 parent aaaea39 commit afc9f52
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
strategy:
matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
django-version: ['3.2', '4.2', '5.0']
django-version: ['4.2', '5.0']
exclude:
- python-version: '3.8'
django-version: '5.0'
Expand Down
2 changes: 1 addition & 1 deletion dj_rest_auth/__version__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
__title__ = 'dj-rest-auth'
__description__ = 'Authentication and Registration in Django Rest Framework.'
__url__ = 'http://github.com/iMerica/dj-rest-auth'
__version__ = '6.0.0'
__version__ = '7.0.0'
__author__ = '@iMerica https://github.com/iMerica'
__author_email__ = '[email protected]'
__license__ = 'MIT'
Expand Down
8 changes: 3 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,12 @@
[tox]
skipsdist = true
envlist =
python{3.8,3.9}-django{3,4}
python{3.10,3.11}-django{4,5}
python{3.8,3.9,3.10,3.11}-django{4,5}

[gh-actions]
python =
3.8: python3.8-django3, python3.8-django4
3.9: python3.9-django3, python3.9-django4
3.8: python3.8-django4
3.9: python3.9-django4
3.10: python3.10-django4, python3.10-django5
3.11: python3.11-django4, python3.11-django5

Expand All @@ -25,7 +24,6 @@ commands =
python ./runtests.py
deps =
-rdj_rest_auth/tests/requirements.pip
django3: Django>=3.2,<4.0
django4: Django>=4.0,<5.0
django5: Django>=5.0,<6.0

Expand Down

0 comments on commit afc9f52

Please sign in to comment.