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

Add Python 3.13 to test matrix #310

Draft
wants to merge 1 commit into
base: master
Choose a base branch
from
Draft
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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
fail-fast: true
max-parallel: 4
matrix:
python-version: [3.8, 3.9, '3.10', 3.11, 3.12]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13.0-rc.2]
Copy link

Choose a reason for hiding this comment

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

The final version is already available

Suggested change
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13.0-rc.2]
python-version: [3.8, 3.9, '3.10', 3.11, 3.12, 3.13]

django-version: [4.2, '5.0', 5.1]
exclude:
# Django 5.0 and 5.1 only support Python 3.10 to 3.12
Expand All @@ -31,6 +31,8 @@ jobs:
django-version: 5.1
- python-version: 3.9
django-version: 5.1
- python-version: 3.13.0-rc.2
django-version: 4.2
Comment on lines +34 to +35
Copy link
Contributor Author

@mschoettle mschoettle Sep 13, 2024

Choose a reason for hiding this comment

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

It seems that Django 4.2 does not support 3.13 right now. See this failure: https://github.com/soynatan/django-easy-audit/actions/runs/10855276442/job/30127523880?pr=310

Copy link

Choose a reason for hiding this comment

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

Yes, and it won't support it. Django 5.1.3 will be the first version to support Python 3.13 (https://code.djangoproject.com/ticket/34900).


steps:
- name: Checkout ${{ github.repository }}
Expand Down
Loading