Merge pull request #28 from MaurizioPilia/patch-1

Upgrade Django and Python versions
This commit is contained in:
fragment 2025-11-10 17:28:36 +09:00 committed by GitHub
commit f74ce45d48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
3 changed files with 9 additions and 11 deletions

View file

@ -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

View file

@ -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

View file

@ -12,7 +12,7 @@ setup(
packages=["encrypted_fields"],
version="0.3.0",
install_requires=[
"Django>=3.2",
"Django>=4.2",
"cryptography>=35.0.0",
],
)