mirror of
https://github.com/jazzband/dj-database-url.git
synced 2026-03-16 22:20:24 +00:00
Expand test matrix to support Python 3.14 and Django 6.0, update compatibility exclusions
This commit is contained in:
parent
438ec393ab
commit
989429838a
1 changed files with 12 additions and 11 deletions
23
.github/workflows/test.yml
vendored
23
.github/workflows/test.yml
vendored
|
|
@ -6,19 +6,20 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||
django-version: ["4.2", "5.1"]
|
||||
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]
|
||||
django-version: ["4.2", "5.2", "6.0"]
|
||||
exclude:
|
||||
# Python 3.11 is not compatible with 3.2
|
||||
- python-version: "3.11"
|
||||
django-version: "3.2"
|
||||
- python-version: "3.12"
|
||||
django-version: "3.2"
|
||||
# django 4.x is not compatible with python 3.13 or higher
|
||||
- python-version: "3.13"
|
||||
django-version: "3.2"
|
||||
# django 5.x is not compatible with python 3.9 or lower
|
||||
- python-version: "3.9"
|
||||
django-version: "5.1"
|
||||
django-version: "4.2"
|
||||
- python-version: "3.14"
|
||||
django-version: "4.2"
|
||||
# django 6.x is not compatible with python 3.11 or lower
|
||||
- python-version: "3.10"
|
||||
django-version: "6.0"
|
||||
- python-version: "3.11"
|
||||
django-version: "6.0"
|
||||
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
|
|
|
|||
Loading…
Reference in a new issue