Skip to content

Commit

Permalink
Drop Django 3.2, 4.0 and 4.1
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-schilling committed Dec 14, 2023
1 parent ab42c1f commit f8c536b
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 18 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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+
Expand All @@ -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 <v4.1
- django-version: 3.2
python-version: 3.11
- django-version: 4.0
python-version: 3.11
- django-version: 3.2
python-version: 3.12
- django-version: 4.0
python-version: 3.12
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
Expand Down
2 changes: 1 addition & 1 deletion docs/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Requirements
------------

* Python 3.8 and above
* Django 3.2 and above
* Django 4.2 and above

You will also need the following:

Expand Down
4 changes: 2 additions & 2 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 2 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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 = '*'
Expand Down

0 comments on commit f8c536b

Please sign in to comment.