Skip to content

Commit

Permalink
Update to support wagtail 2.10rc2
Browse files Browse the repository at this point in the history
  • Loading branch information
cwdavies committed Aug 6, 2020
1 parent 5efe084 commit 9b5271d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ matrix:
python: 3.6
- env: TOXENV=py38-dj22-wag29
python: 3.8
- env: TOXENV=py36-dj22-wag210
python: 3.6
- env: TOXENV=py38-dj22-wag210
python: 3.8

install:
pip install tox coveralls
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.6, 3.8
- Django 1.11, 2.2
- Wagtail 2.3, 2.9
- Wagtail 2.3, 2.9, 2.10

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 setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@


install_requires = [
"wagtail>=2.3,<2.10",
"wagtail>=2.3,<2.11",
]


Expand Down
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ skipsdist=True
envlist=
lint,
py{36}-dj{111,22}-wag{23},
py{36,38}-dj{22}-wag{29}
py{36,38}-dj{22}-wag{29,210}

[testenv]
install_command=pip install -e ".[testing]" -U {opts} {packages}
Expand All @@ -23,6 +23,7 @@ deps=
dj22: Django>=2.2,<2.3
wag23: wagtail>=2.3,<2.4
wag29: wagtail>=2.9,<2.10
wag210: wagtail==2.10rc2

[testenv:lint]
basepython=python3.6
Expand Down

0 comments on commit 9b5271d

Please sign in to comment.