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

Simplify matrix-test, drop old django versions #2133

Merged
merged 1 commit into from
May 7, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 4 additions & 8 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,19 +125,15 @@ jobs:
strategy:
fail-fast: false
matrix:
python-version: ['3.10', '3.11']
django-version: ['3.2', '4.2', '5.0']
python-version: ['3.11', '3.12']
django-version: ['4.2', '5.0']
include:
- python-version: '3.8'
django-version: '3.2'
- python-version: '3.8'
django-version: '4.2'
- python-version: '3.9'
django-version: '3.2'
- python-version: '3.9'
django-version: '4.2'
- python-version: '3.12'
django-version: '4.1'
Comment on lines -139 to -140
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh, I didn't realize Django 4.1 has been EOL for so long already.

We should remove Django 4.1 "partial support" from README as well.

- python-version: '3.10'
django-version: '4.2'
steps:
- uses: actions/checkout@v4
- name: Setup system dependencies
Expand Down
Loading