diff --git a/.github/workflows/lint-and-test.yml b/.github/workflows/lint-and-test.yml index 22c4d0e..41d3553 100644 --- a/.github/workflows/lint-and-test.yml +++ b/.github/workflows/lint-and-test.yml @@ -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: diff --git a/.travis.yml b/.travis.yml index 74dee72..abb7406 100644 --- a/.travis.yml +++ b/.travis.yml @@ -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 diff --git a/README.md b/README.md index 7179056..c481c64 100644 --- a/README.md +++ b/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:| diff --git a/setup.py b/setup.py index 4c8e8a4..f1f2ee0 100644 --- a/setup.py +++ b/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", ], )