Skip to content

Commit afc9f52

Browse files
committed
Deprecates Django 3
1 parent aaaea39 commit afc9f52

File tree

3 files changed

+5
-7
lines changed

3 files changed

+5
-7
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ jobs:
5252
strategy:
5353
matrix:
5454
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
55-
django-version: ['3.2', '4.2', '5.0']
55+
django-version: ['4.2', '5.0']
5656
exclude:
5757
- python-version: '3.8'
5858
django-version: '5.0'

dj_rest_auth/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
__title__ = 'dj-rest-auth'
22
__description__ = 'Authentication and Registration in Django Rest Framework.'
33
__url__ = 'http://github.com/iMerica/dj-rest-auth'
4-
__version__ = '6.0.0'
4+
__version__ = '7.0.0'
55
__author__ = '@iMerica https://github.com/iMerica'
66
__author_email__ = 'imichael@pm.me'
77
__license__ = 'MIT'

tox.ini

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,12 @@
1010
[tox]
1111
skipsdist = true
1212
envlist =
13-
python{3.8,3.9}-django{3,4}
14-
python{3.10,3.11}-django{4,5}
13+
python{3.8,3.9,3.10,3.11}-django{4,5}
1514

1615
[gh-actions]
1716
python =
18-
3.8: python3.8-django3, python3.8-django4
19-
3.9: python3.9-django3, python3.9-django4
17+
3.8: python3.8-django4
18+
3.9: python3.9-django4
2019
3.10: python3.10-django4, python3.10-django5
2120
3.11: python3.11-django4, python3.11-django5
2221

@@ -25,7 +24,6 @@ commands =
2524
python ./runtests.py
2625
deps =
2726
-rdj_rest_auth/tests/requirements.pip
28-
django3: Django>=3.2,<4.0
2927
django4: Django>=4.0,<5.0
3028
django5: Django>=5.0,<6.0
3129

0 commit comments

Comments
 (0)