mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
Merge pull request #28 from MaurizioPilia/patch-1
Upgrade Django and Python versions
This commit is contained in:
commit
f74ce45d48
3 changed files with 9 additions and 11 deletions
10
.github/workflows/lint-and-test.yml
vendored
10
.github/workflows/lint-and-test.yml
vendored
|
|
@ -26,11 +26,9 @@ 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.1", "5.2"]
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
|
|
@ -44,7 +42,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
|
||||
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
cffi==1.14.6
|
||||
cryptography==35.0.0
|
||||
pycparser==2.20
|
||||
Django>=3.2
|
||||
cffi==2.0.0
|
||||
cryptography==46.0.2
|
||||
pycparser==2.23
|
||||
Django>=4.2
|
||||
|
|
|
|||
2
setup.py
2
setup.py
|
|
@ -12,7 +12,7 @@ setup(
|
|||
packages=["encrypted_fields"],
|
||||
version="0.3.0",
|
||||
install_requires=[
|
||||
"Django>=3.2",
|
||||
"Django>=4.2",
|
||||
"cryptography>=35.0.0",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue