Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop Django 3.2, 4.0 and 4.1 #319

Merged
merged 1 commit into from
Dec 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading