Fix minimum django version to 3.2

This commit is contained in:
Naohide Anahara 2023-07-24 16:09:44 +01:00
parent 295f84f40c
commit 4914aa827c
4 changed files with 15 additions and 17 deletions

View file

@ -29,12 +29,12 @@ jobs:
test:
strategy:
matrix:
python_version: [3.7, 3.8, 3.9, '3.10']
django_version: [2.2, 3.0, 3.1, 3.2, 4.0.4]
python_version: 3.8, 3.9, '3.10']
django_version: [3.2, 4.0, 4.1.0, 4.2.2]
exclude:
# Ignore Django 4 on Python 3.7
- python_version: 3.7
django_version: 4.0.4
- python_version: 3.8
django_version: 4.2.2
runs-on: ubuntu-latest
steps:

View file

@ -2,11 +2,10 @@ language: python
python:
- "3.9"
env:
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0
- DJANGO_VERSION=3.1
- DJANGO_VERSION=3.2
- DJANGO_VERSION=4.0a1
- DJANGO_VERSION=4.0
- DJANGO_VERSION=4.1
- DJANGO_VERSION=4.2
install:
- pip install -q Django==$DJANGO_VERSION
- pip install -q -r requirements.txt

View file

@ -57,10 +57,9 @@ Currently build in and unit-tested fields. They have the same APIs as their non-
### Compatible Django Version
|Compatible Django Version|Specifically tested|
|---|---|
|`2.2`|:heavy_check_mark:|
|`3.0`|:heavy_check_mark:|
|`3.1`|:heavy_check_mark:|
|`3.2`|:heavy_check_mark:|
|`4.0`|:heavy_check_mark:|
| Compatible Django Version |Specifically tested|
|---------------------------|---|
| `3.2` |:heavy_check_mark:|
| `4.0` |:heavy_check_mark:|
| `4.1` |:heavy_check_mark:|
| `4.2` |:heavy_check_mark:|

View file

@ -11,9 +11,9 @@ setup(
author="fragment.co.jp",
author_email="info@fragment.co.jp",
packages=["encrypted_fields"],
version="0.1.2",
version="0.1.3",
install_requires=[
"Django>=2.2",
"Django>=3.2",
"cryptography>=35.0.0",
],
)