Support new python and django versions

This commit is contained in:
MaurizioPilia 2025-10-09 12:30:22 +02:00 committed by GitHub
parent 60a373921c
commit 46524cc2e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -26,11 +26,11 @@ jobs:
test:
strategy:
matrix:
python_version: ["3.10", 3.11, 3.12]
django_version: [3.2, 4.0, 4.1.0, 4.2.2, 5.0, 5.1.4]
exclude:
- python_version: 3.12
django_version: 3.2
python_version: ["3.10", 3.11, 3.12, 3.13, 3.14]
django_version: [4.2, 5.2, 6.0]
# exclude:
# - python_version: 3.12
# django_version: 3.2
runs-on: ubuntu-latest
steps:
@ -44,7 +44,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -q Django==${{ matrix.django_version }}
pip install -q Django~=${{ matrix.django_version }}
pip install coverage pytest
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi