Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Drop support for EOL Python and Django and update tests #313

Merged
merged 13 commits into from
Feb 9, 2025
Prev Previous commit
Next Next commit
Fix exclude matrix
  • Loading branch information
mikemanger committed Feb 7, 2025
commit d54277c055677e3160d1016e46e6060c32a1ad54
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,15 @@ jobs:
- "5.0"
- "5.1"
exclude:
# See https://docs.djangoproject.com/en/dev/faq/install/#what-python-version-can-i-use-with-django
- django-version: "4.2"
python-version: ["3.13"]
python-version: "3.13"
- django-version: "5.0"
python-version: ["3.9", "3.13"]
python-version: "3.9"
- django-version: "5.0"
python-version: "3.13"
- django-version: "5.1"
python-version: ["3.9"]
python-version: "3.9"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down