-
Notifications
You must be signed in to change notification settings - Fork 2
Wagtail 7.2 Maintenance #8
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
Open
rachelhsmith
wants to merge
10
commits into
torchbox:main
Choose a base branch
from
torchbox-forks:support/wagtail-71-upgrade
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
ed4347b
Update the tox configuration to use Wagtail 7.0 and Django 5.2
nickmoreton b3f5a83
Add wagtail 6.3 back into tox testing
nickmoreton 41b3859
update tox configuration for wagtail 7.1
rachelhsmith 739e450
Update to test and support Wagtail 7.2
nickmoreton ca3bfe7
We don't need black, flake8, and isort anymore since we are using ruff
nickmoreton 8feb3de
Update CI to drop Python 3.9 and add Python 3.14
nickmoreton 71a4547
Bump some dev dependencies
nickmoreton ca1b92d
Add testing for Python 3.14 in tox.ini
nickmoreton d9a19be
Update CHANGELOG
nickmoreton eab7e3a
Correct the django42 dependency
nickmoreton File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,38 +1,33 @@ | ||
| [tox] | ||
| envlist = | ||
| # Django versions with their respectively supported Python versions and the most recent Wagtail LTS | ||
| py{39,310,311,312}-django42-wagtail{63,70} | ||
| py{310,311,312,313}-django{51,52}-wagtail{63,70} | ||
| # Old Wagtail versions with the oldest Django LTS and Python | ||
| py39-django42-wagtail52 | ||
| py{310,311,312}-django42-wagtail{70,72} | ||
| py{310,311,312,313}-django{51,52}-wagtail{70,72} | ||
| py314-django52-wagtail{70,72} | ||
|
|
||
| isolated_build = True | ||
|
|
||
| [gh-actions] | ||
| python = | ||
| 3.9: py39 | ||
| 3.10: py310 | ||
| 3.11: py311 | ||
| 3.12: py312 | ||
| 3.13: py313 | ||
| 3.14: py314 | ||
|
|
||
| [testenv] | ||
| deps = | ||
| django42: Django>=4.2,<5.0 | ||
| django42: Django>=4.2,<4.3 | ||
| django51: Django>=5.1,<5.2 | ||
| django52: Django>=5.2,<5.3 | ||
| wagtail52: wagtail>=5.2,<5.3 | ||
| wagtail70: wagtail>=7.0,<7.1 | ||
| wagtail72: wagtail>=7.2,<7.3 | ||
| pytest | ||
| pytest-django | ||
| extras = dev | ||
| commands = | ||
| pytest {posargs} | ||
|
|
||
| [testenv:lint] | ||
| deps = | ||
| black==23.1.0 | ||
| flake8==6.0.0 | ||
| isort==5.12.0 | ||
| commands = | ||
| ruff check . | ||
| ruff format . --check | ||
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.
Uh oh!
There was an error while loading. Please reload this page.