Skip to content

Commit

Permalink
Added testing for Django 4.2 and Wagtail 5.0, Updated docs
Browse files Browse the repository at this point in the history
  • Loading branch information
katdom13 authored and nickmoreton committed Jul 31, 2023
1 parent 642f67b commit f133197
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ Compatibility
This code has been tested for compatibility with:

* Python 3.8+
* Django 3.2 (LTS), 4.1
* Wagtail 3.0, 4.1 (LTS), 4.2
* Django 3.2 (LTS), 4.1, 4.2 (LTS)
* Wagtail 4.1 (LTS), 4.2, 5.0

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-inventory/issues/new>`_.
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ authors = [
]
dependencies = [
"tqdm>=4.15.0,<5",
"wagtail>=3",
"wagtail>=4.1",
"django-autocomplete-light>=3.9",
]
classifiers = [
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4",
"Framework :: Wagtail",
"Framework :: Wagtail :: 3",
"Framework :: Wagtail :: 4",
"Framework :: Wagtail :: 5",
"License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication",
"License :: Public Domain",
"Programming Language :: Python",
Expand Down
9 changes: 6 additions & 3 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
skipsdist=True
envlist=
lint,
python{3.8}-django{3.2}-wagtail{3.0},
python{3.8,3.11}-django{3.2,4.1}-wagtail{4.1,4.2},
python{3.8,3.9,3.10}-django{3.2,4.1}-wagtail{4.1,4.2,5.0},
python{3.11}-django{4.1,4.2}-wagtail{5.0},
coverage

[testenv]
Expand All @@ -13,14 +13,17 @@ commands=

basepython=
python3.8: python3.8
python3.9: python3.9
python3.10: python3.10
python3.11: python3.11

deps=
django3.2: Django>=3.2,<3.3
django4.1: Django>=4.1,<4.2
wagtail3.0: wagtail>=3.0,<4.0
django4.2: Django>=4.2,<4.3
wagtail4.1: wagtail>=4.1,<4.2
wagtail4.2: wagtail>=4.2,<5.0
wagtail5.0: wagtail>=5.0,<5.1

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

0 comments on commit f133197

Please sign in to comment.