Skip to content

Commit d5a917c

Browse files
committed
...
1 parent ce9cd05 commit d5a917c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/django.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- name: Check out the repository

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
python-version: ["3.8", "3.9", "3.10", "3.11"]
18+
python-version: ["3.10", "3.11", "3.12"]
1919

2020
steps:
2121
- name: Check out the repository

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ colorama==0.4.6
1111
crashtest==0.4.1
1212
cryptography==42.0.8
1313
distlib==0.3.8
14-
Django>=5.0,<6.0
14+
Django<5.0; python_version < "3.10"
15+
Django>=5.0,<6.0; python_version >= "3.10"
1516
django-appconf==1.0.6
1617
django-ckeditor-5==0.2.18
1718
django-filter==24.3

0 commit comments

Comments
 (0)