diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 045e7ab..b3b8d11 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -31,7 +31,7 @@ jobs: fail-fast: false matrix: python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12"] - django-version: [ "3.2", "4.0", "4.1", "4.2", "5.0"] + django-version: [ "4.2", "5.0"] drf-version: [ "3.11", "3.12", "3.13" ] exclude: # Python 3.8 is incompatible with Django v5+ @@ -40,15 +40,6 @@ jobs: # Python 3.9 is incompatible with Django v5+ - django-version: 5.0 python-version: 3.9 - # Python 3.11+ is incompatible with Django =0.18.0)"] [metadata] lock-version = "2.0" python-versions = "^3.8" -content-hash = "8319313bf0036e20f2de8cc1480dec3ce4e563999d714a62b09f29475149fdc4" +content-hash = "3b1d11d11eced839d2db51856b2a3e5d43a0f281344eba08926fd013a23a0526" diff --git a/pyproject.toml b/pyproject.toml index d056cf8..754de65 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -12,9 +12,6 @@ keywords = ['django', 'authentication', 'adfs', 'azure', 'ad', 'oauth2'] readme = 'README.rst' classifiers = [ 'Environment :: Web Environment', - 'Framework :: Django :: 3.2', - 'Framework :: Django :: 4.0', - 'Framework :: Django :: 4.1', 'Framework :: Django :: 4.2', 'Framework :: Django :: 5.0', 'Intended Audience :: Developers', @@ -39,8 +36,8 @@ classifiers = [ [tool.poetry.dependencies] python = '^3.8' django = [ - { version = '^3 || ^4', python = '>=3.8 <3.10' }, - { version = '^4 || ^5', python = '>=3.10' }, + { version = '^4.2', python = '>=3.8 <3.10' }, + { version = '^4.2 || ^5', python = '>=3.10' }, ] requests = '*' urllib3 = '*'