diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 1bb14c9..42f0b51 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -4,8 +4,9 @@ jobs: test: runs-on: ubuntu-latest strategy: + fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"] django-version: ["3.2", "4.0", "4.1"] exclude: # Python 3.6 is not compatible with 4.0 @@ -20,7 +21,12 @@ jobs: # Python 3.7 is not compatible with 4.1 - python-version: "3.7" django-version: "4.1" - fail-fast: false + # Python 3.11 is not compatible with 3.2 + - python-version: "3.11" + django-version: "3.2" + # Python 3.11 is not compatible with 3.2 + - python-version: "3.11" + django-version: "4.0" steps: - uses: actions/checkout@v3 @@ -42,4 +48,4 @@ jobs: coverage report coverage xml - - uses: codecov/codecov-action@v2 + - uses: codecov/codecov-action@v3 diff --git a/setup.py b/setup.py index 6db32dc..21bc2b7 100644 --- a/setup.py +++ b/setup.py @@ -41,5 +41,6 @@ "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", ], )