Update Python/Django support matrix - #322
Merged
Merged
Conversation
Add Python 3.14 (latest stable) and Django 6.0 (latest stable). - README compatibility table: 6.0 column and 3.14 row, filled per Django's documented Python support (6.0: 3.12-3.14; 5.2: adds 3.14 in 5.2.8) - CI: Python 3.14 in the functional matrix, plus a django-6 job running Django 6.0 on Python 3.12, 3.13 and 3.14 The django-6 job uses the latest Poetry rather than the pinned 1.4.2, which does not run on Python 3.14; the older Django jobs keep the pin so they keep working on Python 3.8.
dmitry-mukhin
approved these changes
Aug 5, 2026
Co-authored-by: Claude <noreply@anthropic.com>
Contributor
Author
|
Seems like adding |
Chore/bump and pin actions
Member
|
we should use conditional, let me try. |
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




Refreshes the Python/Django support matrix, which had fallen behind the latest stable releases. Independent of the tags/search PRs (#320, #321) — branched off
main.Versions verified against upstream docs (not memory):
Changes
README — compatibility table:
6.0column (vfor Python 3.12–3.14 only; 6.0 requires 3.12+).3.14row (vfor Django 5.2 and 6.0 only).CI (
.github/workflows/test.yml):functional: Python 3.14 added to the matrix.django-6job: Django 6.0 on Python 3.12, 3.13 and 3.14.The
django-6job uses the latest Poetry rather than the pinned1.4.2the older Django jobs use —1.4.2does not run on Python 3.14. The older jobs keep the pin so they keep working on Python 3.8.The
python = ">=3.8,<3.15"andDjango = ">=2.2"constraints already cover 3.14 and 6.0, sopyproject.tomlneeds no dependency changes. (APython :: 3.14trove classifier was intentionally left out — the current toolchain'strove-classifiersdoesn't recognize it yet, which would failpoetry build; it can be added once that updates.)Note:
5.2 + 3.14is a valid combination but is not tested as its own CI cell, to avoid running the pinned old Poetry on Python 3.14. Both5.2and3.14are exercised by other jobs.🤖 Generated with Claude Code