Skip to content

Commit

Permalink
Add tox testing for Wagtail 6.2 and 6.3
Browse files Browse the repository at this point in the history
Drop tasting for Python 3.8
  • Loading branch information
nickmoreton committed Nov 18, 2024
1 parent a0f01c6 commit e05c210
Show file tree
Hide file tree
Showing 2 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 @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand Down
7 changes: 4 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,11 @@
min_version = 4.11

env_list =
python{3.8,3.9,3.10,3.11}-django4.2-wagtail{5.2,6.0,6.1}
python{3.10,3.11,3.12}-django5.0-wagtail{5.2,6.0,6.1}
python{3.9,3.10,3.11}-django4.2-wagtail{5.2,6.0,6.1,6.2,6.3}
python{3.10,3.11,3.12}-django5.0-wagtail{5.2,6.0,6.1,6.2,6.3}

[gh-actions]
python =
3.8: python3.8
3.9: python3.9
3.10: python3.10
3.11: python3.11
Expand Down Expand Up @@ -36,6 +35,8 @@ deps =

wagtail5.2: wagtail>=5.2, <6.0
wagtail6.0: wagtail>=6.0, <6.1
wagtail6.1: wagtail>=6.1, <6.2
wagtail6.2: wagtail>=6.2, <6.3

install_command = python -Im pip install -U {opts} {packages}
commands =
Expand Down

0 comments on commit e05c210

Please sign in to comment.