Skip to content

Commit

Permalink
Run tests with Python 3.13 and Django 5.1 and Wagtail 6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
nickmoreton committed Jan 7, 2025
1 parent 08a8cd7 commit 0a68e75
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.11", "3.12"]
python-version: ["3.11", "3.12", "3.13"]
db: ["postgres"]

services:
Expand Down
7 changes: 6 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,14 @@
min_version = 4.11

envlist =
py{3.11,3.12}-django{4.2,5.0}-wagtail{5.2,6.1}
py{3.11,3.12}-django{4.2,5.0}-wagtail{5.2,6.1,6.2,6.3}
py3.13-django5.1-wagtail6.3

[gh-actions]
python =
3.11: py3.11
3.12: py3.12
3.13: py3.13

[gh-actions:env]
DB =
Expand All @@ -33,9 +35,12 @@ extras = testing
deps =
django4.2: Django>=4.2,<4.3
django5.0: Django>=5.0,<5.1
django5.1: Django>=5.1,<5.2

wagtail5.2: wagtail>=5.2,<5.3
wagtail6.1: wagtail>=6.1,<6.2
wagtail6.2: wagtail>=6.2,<6.3
wagtail6.3: wagtail>=6.3,<6.4
wagtailmain: git+https://github.com/wagtail/wagtail.git

postgres: psycopg2>=2.9
Expand Down

0 comments on commit 0a68e75

Please sign in to comment.