Update Python and Django versions in CI workflow

This commit is contained in:
Johannes Wilm 2026-01-07 21:45:50 +01:00 committed by GitHub
parent a6cafaa7f0
commit 45e741a342
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -5,32 +5,26 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] python-version: ['3.10', '3.11', '3.12', '3.13', '3.14']
django-version: ['3.2', '4.1', '4.2', '5.0', '5.1.*'] django-version: ['4.2', '5.2', '6.0.*']
exclude: exclude:
- python-version: 3.13
django-version: 4.2
- python-version: 3.14
django-version: 4.2
- python-version: 3.10
django-version: 6.0.*
- python-version: 3.11 - python-version: 3.11
django-version: 3.2 django-version: 6.0.*
- python-version: 3.12
django-version: 3.2
- python-version: 3.8
django-version: 5.0
- python-version: 3.9
django-version: 5.0
- python-version: 3.8
django-version: 5.1.*
- python-version: 3.9
django-version: 5.1.*
fail-fast: false fail-fast: false
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v6
- name: 'Set up Python ${{ matrix.python-version }}' - name: 'Set up Python ${{ matrix.python-version }}'
uses: actions/setup-python@v3 uses: actions/setup-python@v6
with: with:
python-version: '${{ matrix.python-version }}' python-version: '${{ matrix.python-version }}'
cache: 'pip' cache: 'pip'