Skip to content

Commit 4eca0bd

Browse files
authored
Merge pull request #181 from labd/add-wagtail-214-support
Add wagtail 214 support
2 parents 115b443 + 2ef69a7 commit 4eca0bd

3 files changed

Lines changed: 15 additions & 3 deletions

File tree

.github/workflows/python-test.yml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ name: Python Tests
44
on: [push]
55

66
jobs:
7-
87
format:
98
runs-on: ubuntu-latest
109
steps:
@@ -57,12 +56,16 @@ jobs:
5756
- py37-dj30-wt211
5857
- py37-dj30-wt212
5958
- py37-dj30-wt213
59+
- py37-dj30-wt214
6060
- py38-dj30-wt28
6161
- py38-dj30-wt29
6262
- py38-dj30-wt210
6363
- py38-dj30-wt211
6464
- py38-dj30-wt212
6565
- py38-dj30-wt213
66+
- py38-dj30-wt214
67+
- py37-dj31-wt214
68+
- py38-dj31-wt214
6669
include:
6770
- python-version: 3.6
6871
tox_env: py36-dj22-wt25
@@ -130,6 +133,8 @@ jobs:
130133
tox_env: py37-dj30-wt212
131134
- python-version: 3.7
132135
tox_env: py37-dj30-wt213
136+
- python-version: 3.7
137+
tox_env: py37-dj30-wt214
133138
- python-version: 3.8
134139
tox_env: py38-dj30-wt28
135140
- python-version: 3.8
@@ -142,6 +147,12 @@ jobs:
142147
tox_env: py38-dj30-wt212
143148
- python-version: 3.8
144149
tox_env: py38-dj30-wt213
150+
- python-version: 3.8
151+
tox_env: py38-dj30-wt214
152+
- python-version: 3.7
153+
tox_env: py37-dj31-wt214
154+
- python-version: 3.8
155+
tox_env: py38-dj31-wt214
145156
steps:
146157
- uses: actions/checkout@v2
147158
- name: Set up Python ${{ matrix.python-version }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919

2020
install_requires = [
21-
"wagtail>=2,<2.14",
21+
"wagtail>=2,<2.15",
2222
"Unidecode>=0.04.14,<2.0",
2323
]
2424

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
envlist =
33
flake8
44
py{36,37,38}-dj{22}-wt{25,26,27,28,29,210,211,212,213}
5-
py{37,38}-dj{30,31}-wt{28,29,210,211,212,213}
5+
py{37,38}-dj{30,31}-wt{28,29,210,211,212,213,214}
66

77
[gh-actions]
88
python =
@@ -29,6 +29,7 @@ deps =
2929
wt211: wagtail>=2.11,<2.12
3030
wt212: wagtail>=2.12,<2.13
3131
wt213: wagtail>=2.13,<2.14
32+
wt214: wagtail>=2.14,<2.15
3233

3334
commands =
3435
coverage run manage.py test

0 commit comments

Comments
 (0)