Wagtail 7.4 Maintenance - #64
Merged
Merged
Conversation
Drop end-of-life targets and add current releases: * Drop Wagtail < 7.0 (6.3 LTS reached EOL 2026-05-01) * Drop Django < 5.2 (4.2 and 5.1 both EOL) * Add Django 6.0 support (Python 3.12+ only) * Add Wagtail 7.3 and 7.4 LTS support * Add Python 3.14 support and CI matrix entry Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
* Relax pinned dev dependencies (coverage, factory_boy, black) to ranges * Replace deprecated ``python setup.py bdist_wheel sdist`` with ``python -m build`` in the CI build job Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Contributor
Author
|
When merged we no longer need: |
nickmoreton
marked this pull request as ready for review
May 26, 2026 16:10
This was referenced May 26, 2026
Closed
Closed
JakubMastalerz
approved these changes
May 27, 2026
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.
Summary
Aligns supported Python, Django, and Wagtail versions with the official support matrices as of 2026-05-26.
[gh-actions]map, and the CIpythonmatrix). Wagtail 7.0 LTS does not support Python 3.14, so that combo is excluded from the envlist.python setup.py bdist_wheel sdistwithpython -m build.coverage,factory_boy, andblackfrom exact pins to ranges.No source-level changes were required — the package has no version guards or moved imports. Coverage remains at 100% across the representative tox envs run locally.
Commits are split per the package modernisation policy:
install_requires,tox.ini, CI Python matrix,CHANGELOG.rst.testingextras and build step.Sources (retrieved 2026-05-26):
Test plan
tox -lresolves the envlist cleanlytox -e py312-dj52-wagtail70passes (Wagtail 7.0 LTS)tox -e py312-dj52-wagtail74passes (Wagtail 7.4 LTS)tox -e py312-dj60-wagtail74passes (Django 6.0 + Wagtail 7.4 LTS)tox -e black,flake8,isortpasspython -m buildjob uploads sdist + wheel andtwine checkpasses🤖 Generated with Claude Code