mirror of
https://github.com/jazzband/django-avatar.git
synced 2026-03-16 22:20:30 +00:00
Update Python and Django versions in CI workflow
This commit is contained in:
parent
a6cafaa7f0
commit
45e741a342
1 changed files with 14 additions and 20 deletions
34
.github/workflows/test.yml
vendored
34
.github/workflows/test.yml
vendored
|
|
@ -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'
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue