diff --git a/dj_rest_auth/tests/requirements.pip b/dj_rest_auth/tests/requirements.pip index ec63f0cf..893a7a27 100644 --- a/dj_rest_auth/tests/requirements.pip +++ b/dj_rest_auth/tests/requirements.pip @@ -1,7 +1,7 @@ coveralls==1.11.1 django-allauth==0.61.1 -django>=2.2,<5.0 -djangorestframework-simplejwt==4.6.0 +django>=2.2 +djangorestframework-simplejwt>=5.3.1 flake8==3.8.4 responses==0.12.1 unittest-xml-reporting==3.0.4 diff --git a/setup.py b/setup.py index f6df8d4a..4f095dca 100644 --- a/setup.py +++ b/setup.py @@ -28,7 +28,7 @@ keywords='django rest auth registration rest-framework django-registration api', zip_safe=False, install_requires=[ - 'Django>=3.2,<5.0', + 'Django>=3.2', 'djangorestframework>=3.13.0', ], extras_require={ diff --git a/tox.ini b/tox.ini index 30b42fe6..15872c1f 100644 --- a/tox.ini +++ b/tox.ini @@ -12,14 +12,16 @@ skipsdist = true envlist = python{3.6,3.7,3.8,3.9}-django3 python{3.8,3.9,3.10,3.11}-django4 + python{3.10,3.11,3.12}-django5 [testenv] commands = python ./runtests.py deps = -rdj_rest_auth/tests/requirements.pip - django3: Django>=3.2 - django4: Django>=4.0,<4.3 + django3: Django>=3.2,<4.0 + django4: Django>=4.0,<5.0 + django5: Django>=5.0,<6.0 # Configuration for coverage and flake8 is being set in `./setup.cfg` [testenv:coverage]