Skip to content

Commit

Permalink
Include support for Wagtail 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
willbarton committed Dec 19, 2023
1 parent 5323673 commit 4073500
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
matrix:
python: ['3.8', '3.12']
django: ['3.2', '4.2']
wagtail: ['5.2']
wagtail: ['5.1', '5.2']

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Wagtail-TreeModelAdmin is an extension for Wagtail's [ModelAdmin](http://docs.wa

- Python 3.8+
- Django 3.2 (LTS), 4.1 (current)
- Wagtail 5.2+
- Wagtail 5.1+

It should be compatible with all intermediate versions, as well.
If you find that it is not, please [file an issue](https://github.com/cfpb/wagtail-treemodeladmin/issues/new).
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ authors = [
{name = "CFPB", email = "tech@cfpb.gov" }
]
dependencies = [
"wagtail>=5.2,<5.3",
"wagtail>=5.1,<5.3",
"wagtail-modeladmin>=1.0",
]
classifiers = [
Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
skipsdist=True
envlist=
lint,
python{3.8,3.12}-django{3.2,4.2}-wagtail{5.2},
python{3.8,3.12}-django{3.2,4.2}-wagtail{5.1,5.2},
coverage

[testenv]
Expand All @@ -19,6 +19,7 @@ basepython=
deps=
django3.2: Django>=3.2,<3.3
django4.2: Django>=4.2,<4.3
wagtail5.1: wagtail>=5.1,<5.2
wagtail5.2: wagtail>=5.2,<5.3

[testenv:lint]
Expand Down

0 comments on commit 4073500

Please sign in to comment.