diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 92bc9ca..b9fbcfa 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -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' diff --git a/dj_rest_auth/__version__.py b/dj_rest_auth/__version__.py index c282a18..1a0f2e8 100644 --- a/dj_rest_auth/__version__.py +++ b/dj_rest_auth/__version__.py @@ -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__ = 'imichael@pm.me' __license__ = 'MIT' diff --git a/tox.ini b/tox.ini index a6e69be..4e29573 100644 --- a/tox.ini +++ b/tox.ini @@ -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 @@ -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