Wagtail 7.1 maintenance #54
Open
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.
This pull request updates the project's test matrix and environment configuration to support multiple versions of Wagtail 7.x, alongside existing Django and Python versions.
Test Matrix Updates:
.github/workflows/test.yml
to include jobs for Wagtail7.1
across all supported Python versions (3.10
–3.13
), in addition to existing jobs for Wagtail7.0
.Environment Configuration Updates:
tox.ini
envlist
to explicitly test against both Wagtail7.0
and7.1
for each supported Python and Django version, ensuring tests are run for all relevant combinations.tox.ini
to distinguish betweenwt70
(wagtail>=7.0,<7.1
) andwt71
(wagtail>=7.1,<7.2
), and fixed a typo in the Djangodj52
version specifier.