mirror of
https://github.com/jazzband/django-fernet-encrypted-fields.git
synced 2026-03-16 22:40:27 +00:00
Merge pull request #15 from frgmt/fixes/required-django-version
Fix minimum django version to 3.2
This commit is contained in:
commit
c2261fa05c
4 changed files with 15 additions and 17 deletions
8
.github/workflows/lint-and-test.yml
vendored
8
.github/workflows/lint-and-test.yml
vendored
|
|
@ -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:
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
13
README.md
13
README.md
|
|
@ -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:|
|
||||
|
|
|
|||
4
setup.py
4
setup.py
|
|
@ -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",
|
||||
],
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue