diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9056609..a2955c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ['3.9', '3.11', '3.12'] + python: ['3.9', '3.10', '3.11', '3.12'] django: ['3.2', '4.2'] name: Run the test suite (Python ${{ matrix.python }}, Django ${{ matrix.django }}) diff --git a/README.rst b/README.rst index ba02d13..e9ffad5 100644 --- a/README.rst +++ b/README.rst @@ -30,7 +30,7 @@ Installation Requirements ------------ -* Python 3.9/3.11 or above +* Python 3.9 or above * Django 3.2/4.2 or newer diff --git a/tox.ini b/tox.ini index 46f176d..5216d00 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] envlist = - py{39}-django{3.2} + py{39,310}-django{3.2} py{310,311,312}-django{42} isort black @@ -11,6 +11,7 @@ skip_missing_interpreters = true [gh-actions] python = 3.9: py39 + 3.10: py310 3.11: py311 3.12: py312