Skip to content

Commit

Permalink
Introduce tox testing for Django 5.1
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmoreton committed Nov 18, 2024
1 parent e05c210 commit 28eea2a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ classifiers = [
"License :: OSI Approved :: BSD License",
"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",
"Programming Language :: Python :: 3.12",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Framework :: Wagtail",
"Framework :: Wagtail :: 5",
"Framework :: Wagtail :: 6",
Expand All @@ -29,7 +29,7 @@ classifiers = [
]

dynamic = ["version"]
requires-python = ">=3.8"
requires-python = ">=3.9"
dependencies = ["Wagtail>=5.2"]

[project.optional-dependencies]
Expand Down
2 changes: 2 additions & 0 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ min_version = 4.11
env_list =
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}
python{3.10,3.11,3.12}-django5.1-wagtail6.3

[gh-actions]
python =
Expand Down Expand Up @@ -32,6 +33,7 @@ extras = testing
deps =
django4.2: Django>=4.2, <5.0
django5.0: Django>=5.0, <5.1
django5.1: Django>=5.1, <5.2

wagtail5.2: wagtail>=5.2, <6.0
wagtail6.0: wagtail>=6.0, <6.1
Expand Down

0 comments on commit 28eea2a

Please sign in to comment.