Skip to content

Commit 1b7fabd

Browse files
committed
exclude Django-5.0 for Python-3.9
1 parent cb4c77e commit 1b7fabd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,13 @@ jobs:
2020
runs-on: ubuntu-latest
2121

2222
strategy:
23-
matrix: # https://docs.djangoproject.com/en/5.0/faq/install/#what-python-version-can-i-use-with-django
23+
matrix:
2424
python-version: ["3.9", "3.10", "3.11", "3.12"]
2525
node-version: ["18.x"]
2626
django-version: ["4.2.*", "5.0.*"]
27+
exclude: # https://docs.djangoproject.com/en/5.0/faq/install/#what-python-version-can-i-use-with-django
28+
- python-version: "3.9"
29+
django-version: "5.0.*"
2730

2831
steps:
2932
- uses: actions/checkout@v3

0 commit comments

Comments
 (0)