mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
Support new python and django versions
This commit is contained in:
parent
60a373921c
commit
46524cc2e2
1 changed files with 6 additions and 6 deletions
12
.github/workflows/lint-and-test.yml
vendored
12
.github/workflows/lint-and-test.yml
vendored
|
|
@ -26,11 +26,11 @@ jobs:
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
python_version: ["3.10", 3.11, 3.12]
|
python_version: ["3.10", 3.11, 3.12, 3.13, 3.14]
|
||||||
django_version: [3.2, 4.0, 4.1.0, 4.2.2, 5.0, 5.1.4]
|
django_version: [4.2, 5.2, 6.0]
|
||||||
exclude:
|
# exclude:
|
||||||
- python_version: 3.12
|
# - python_version: 3.12
|
||||||
django_version: 3.2
|
# django_version: 3.2
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
|
@ -44,7 +44,7 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install -q Django==${{ matrix.django_version }}
|
pip install -q Django~=${{ matrix.django_version }}
|
||||||
pip install coverage pytest
|
pip install coverage pytest
|
||||||
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue