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 4.0 #694

Merged
merged 2 commits into from
Nov 1, 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
1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@ jobs:
- '3.10'
django-version:
- '3.2'
- '4.0'
- '4.1'
- '4.2'
redis-version:
Expand Down
1 change: 1 addition & 0 deletions changelog.d/693.misc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Drop django 4.0
5 changes: 1 addition & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ classifiers =
Environment :: Web Environment
Framework :: Django
Framework :: Django :: 3.2
Framework :: Django :: 4.0
Framework :: Django :: 4.1
Framework :: Django :: 4.2
Intended Audience :: Developers
Expand Down Expand Up @@ -73,7 +72,7 @@ envlist =
isort
mypy
# tests against released versions
py{36,37,38,39,310,311}-dj{22,31,32,40,41,42}-redislatest
py{36,37,38,39,310,311}-dj{22,31,32,41,42}-redislatest
# tests against unreleased versions
py311-dj42-redismaster
py311-djmain-redis{latest,master}
Expand All @@ -90,7 +89,6 @@ python =
[gh-actions:env]
DJANGO =
3.2: dj32
4.0: dj40
4.1: dj41
4.2: dj42
main: djmain
Expand All @@ -117,7 +115,6 @@ commands =

deps =
dj32: Django>=3.2,<3.3
dj40: Django>=4.0,<4.1
dj41: Django>=4.1,<4.2
dj42: Django>=4.2,<5.0
djmain: https://github.com/django/django/archive/main.tar.gz
Expand Down
Loading