Skip to content

Commit d69a0a7

Browse files
authored
Merge pull request #81 from ulgens/drop-django5.0-5.1-eol
Drop support for Django 5.0 & 5.1 (EOL)
2 parents f19ce36 + d28ca68 commit d69a0a7

File tree

3 files changed

+2
-5
lines changed

3 files changed

+2
-5
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,6 @@ jobs:
3939
- '3.14'
4040
django-version:
4141
- 'django==4.2'
42-
- 'django==5.0'
43-
- 'django==5.1'
4442
- 'django==5.2'
4543
- 'django==6.0'
4644

README.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ Requirements
5353

5454
- `Python`_ 3.10+
5555
- `Django`_ 4.2.20+
56+
- `Django~=5.0` and `Django~=5.1` are not supported, because they are end of life: https://endoflife.date/django
5657
- `valkey-py`_ 6.0.2+
5758
- `Valkey server`_ 7.2.6+
5859

pyproject.toml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,12 @@ classifiers = [
2929
"Programming Language :: Python :: 3.13",
3030
"Programming Language :: Python :: 3.14",
3131
"Framework :: Django :: 4.2",
32-
"Framework :: Django :: 5.0",
33-
"Framework :: Django :: 5.1",
3432
"Framework :: Django :: 5.2",
3533
"Framework :: Django :: 6.0"
3634
]
3735

3836
dependencies = [
39-
"django>=4.2",
37+
"django>=4.2,!=5.0.*,!=5.1.*",
4038
"valkey>=6.0.2",
4139
]
4240

0 commit comments

Comments
 (0)