Skip to content

Commit

Permalink
Merge pull request #16 from torchbox-forks/support/wagtail-60
Browse files Browse the repository at this point in the history
Update for wagtail 6.0
  • Loading branch information
nickmoreton authored Mar 11, 2024
2 parents f549a78 + 5d238ef commit 6977243
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 3 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
Changelog
=========

Unreleased
----------

- Drop testing for Wagtail version before 4.1
- Add testing for Wagtail versions 5.2 and 6.0

2.1.1 (2024-01-26)
------------------
#. Added tests for Wagtail 5.2
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
"Framework :: Wagtail",
"Framework :: Wagtail :: 3",
"Framework :: Wagtail :: 4",
"Framework :: Wagtail :: 5",
"Framework :: Wagtail :: 6",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
Expand Down
8 changes: 6 additions & 2 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ skipsdist = True
usedevelop = True
envlist =
py{38,39,310}-dj{32,41}-wt{41,42,50,51,52}
py310-dj42-wt{50,51,52,60}
py311-dj41-wt{41,42,50,51,52}
py311-dj42-wt{50,51,52}
py312-dj42-wt{52}
py311-dj42-wt{50,51,52,60}
py312-dj42-wt{52,60}


[testenv]
install_command = pip install -e ".[testing]" -U {opts} {packages}
Expand All @@ -31,6 +33,8 @@ deps =
wt41: wagtail>=4.1,<5.0
wt50: wagtail>=5.0,<5.1
wt51: wagtail>=5.1,<5.2
wt52: wagtail>=5.2,<6.0
wt60: wagtail>=6.0,<6.1

commands =
make lint
Expand Down

0 comments on commit 6977243

Please sign in to comment.