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 support for Django 4.0 #1235

Merged
merged 1 commit into from
Apr 14, 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
6 changes: 1 addition & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ jobs:
matrix:
os: [ubuntu-20.04]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
django-version: ["3.2", "4.0", "4.1", "main"]
django-version: ["3.2", "4.1", "main"]
exclude:
- python-version: "3.7"
django-version: "4.0"
- python-version: "3.7"
django-version: "4.1"
- python-version: "3.7"
Expand All @@ -30,8 +28,6 @@ jobs:
django-version: "main"
- python-version: "3.11"
django-version: "3.2"
- python-version: "3.11"
django-version: "4.0"

steps:
- uses: actions/checkout@v2
Expand Down
1 change: 0 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Expand Down
2 changes: 0 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
minversion = 1.9
envlist =
py{3.7,3.8,3.9,3.10}-django3.2
py{3.8,3.9,3.10}-django4.0
py{3.8,3.9,3.10,3.11}-django4.1
py{3.10,3.11,3.12}-djangomain
flake8
Expand All @@ -15,7 +14,6 @@ setenv =
commands = pytest --cov=storages tests/ {posargs}
deps =
django3.2: django~=3.2.9
django4.0: django~=4.0.0
django4.1: django~=4.1.0
djangomain: https://github.com/django/django/archive/main.tar.gz
cryptography
Expand Down