Merge pull request #15 from frgmt/fixes/required-django-version

Fix minimum django version to 3.2
This commit is contained in:
fragment 2023-07-24 16:15:01 +01:00 committed by GitHub
commit c2261fa05c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 17 deletions

View file

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

View file

@ -2,11 +2,10 @@ language: python
python: python:
- "3.9" - "3.9"
env: env:
- DJANGO_VERSION=2.2
- DJANGO_VERSION=3.0
- DJANGO_VERSION=3.1
- DJANGO_VERSION=3.2 - DJANGO_VERSION=3.2
- DJANGO_VERSION=4.0a1 - DJANGO_VERSION=4.0
- DJANGO_VERSION=4.1
- DJANGO_VERSION=4.2
install: install:
- pip install -q Django==$DJANGO_VERSION - pip install -q Django==$DJANGO_VERSION
- pip install -q -r requirements.txt - 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
|Compatible Django Version|Specifically tested| | Compatible Django Version |Specifically tested|
|---|---| |---------------------------|---|
|`2.2`|:heavy_check_mark:| | `3.2` |:heavy_check_mark:|
|`3.0`|:heavy_check_mark:| | `4.0` |:heavy_check_mark:|
|`3.1`|:heavy_check_mark:| | `4.1` |:heavy_check_mark:|
|`3.2`|:heavy_check_mark:| | `4.2` |:heavy_check_mark:|
|`4.0`|:heavy_check_mark:|

View file

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