Skip to content

Commit

Permalink
Support Django 5.1 (#179)
Browse files Browse the repository at this point in the history
* Add Django 5.1 to the test cases

* Allow Django 5.1
  • Loading branch information
jourdanrodrigues authored Aug 9, 2024
1 parent fe2363b commit 6ab7000
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
django>=3.2,<5.1
django>=3.2,<5.2
djangorestframework<4.0
social-auth-core>=4.3,<5.0
social-auth-app-django>=5.0,<6.0
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ envlist=
py{37}-django{32}
py{38}-django{32, 41, 42}
py{39}-django{32, 41, 42}
py{310}-django{32, 41, 42, 50}
py{311}-django{41, 42, 50}
py{312}-django{42, 50}
py{310}-django{32, 41, 42, 50, 51}
py{311}-django{41, 42, 50, 51}
py{312}-django{42, 50, 51}

[testenv]
setenv =
Expand All @@ -30,6 +30,7 @@ deps =
django41: Django>=4.1,<4.2
django42: Django>=4.2,<4.3
django50: Django>=5.0,<5.1
django51: Django>=5.1,<5.2
-rrequirements_test.txt
commands =
coverage run --source=rest_social_auth -m pytest {posargs}
Expand Down

0 comments on commit 6ab7000

Please sign in to comment.