Skip to content

Commit

Permalink
Merge pull request #26 from torchbox-forks/support/wagtail-63
Browse files Browse the repository at this point in the history
Testing against Wagtail 6.3
  • Loading branch information
seb-b authored Nov 21, 2024
2 parents c70ad75 + dd486bf commit 5c53fd7
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.9", "3.10", "3.11", "3.12"]
python: ["3.9", "3.10", "3.11", "3.12"]

steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,6 @@
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
Expand All @@ -51,6 +50,7 @@
'Framework :: Django :: 4.2',
'Framework :: Django :: 5',
'Framework :: Django :: 5.0',
'Framework :: Django :: 5.1',
'Framework :: Wagtail',
'Framework :: Wagtail :: 5',
'Framework :: Wagtail :: 6',
Expand Down
8 changes: 5 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
skip_missing_interpreters = True

envlist =
py{38,39,310,311}-dj42-wt{52,60,61,62}
py{310,311,312}-dj50-wt{52,60,61,62}
py{39,310,311}-dj42-wt{52,60,61,62,63}
py{310,311,312}-dj50-wt{52,60,61,62,63}
py{310,311,312}-dj51-wt{63}
flake8,isort,docs

[gh-actions]
python =
3.8: py38
3.9: py39
3.10: py310
3.11: py311
Expand All @@ -25,11 +25,13 @@ deps =
{[base]deps}
dj42: django>=4.2,<4.3
dj50: django>=5.0,<5.1
dj51: django>=5.1,<5.2
djHEAD: django
wt52: Wagtail>=5.2,<5.3
wt60: Wagtail>=6.0,<6.1
wt61: Wagtail>=6.1,<6.2
wt62: Wagtail>=6.2,<6.3
wt63: Wagtail>=6.3,<6.4
wtHEAD: Wagtail

[testenv:flake8]
Expand Down

0 comments on commit 5c53fd7

Please sign in to comment.