diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b554c12..aa23a08 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -6,12 +6,9 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] - django-version: ["3.2", "4.2", "5.1"] + python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"] + django-version: ["4.2", "5.1"] exclude: - # Python 3.7 is not compatible with 4.1 - - python-version: "3.7" - django-version: "4.2" # Python 3.11 is not compatible with 3.2 - python-version: "3.11" django-version: "3.2" @@ -20,10 +17,6 @@ jobs: - python-version: "3.13" django-version: "3.2" # django 5.x is not compatible with python 3.9 or lower - - python-version: "3.7" - django-version: "5.1" - - python-version: "3.8" - django-version: "5.1" - python-version: "3.9" django-version: "5.1"