Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ env:
TOX_TESTENV_PASSENV: FORCE_COLOR
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PIP_NO_PYTHON_VERSION_WARNING: "1"
PYTHON_LATEST: "3.13"
PYTHON_LATEST: "3.14"

jobs:
tests:
Expand All @@ -27,7 +27,7 @@ jobs:

strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"]

steps:
- name: Harden Runner
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## [Unreleased]

## Changed

- Added testing for Wagtail 7.2
- Added testing for Python 3.14
- Updated minimum Python requirement to 3.10
- Dropped testing for Python 3.9
- Dropped testing for Wagtail 7.1

## [0.13.0] - 2025-10-06

- Added support Wagtail 7.1, Django 5.2 (@damwaingames)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ classifiers = [
"License :: OSI Approved :: zlib/libpng License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.1",
Expand All @@ -29,7 +29,7 @@ classifiers = [
]

dynamic = ["version"]
requires-python = ">=3.9"
requires-python = ">=3.10"
dependencies = [
"Wagtail>=6.3",
"Markdown>=3.3,<4",
Expand Down
10 changes: 5 additions & 5 deletions tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
min_version = 4.22

envlist =
py{39}-django42-wagtail{63}
py{310}-django42-wagtail{63}
py{310,311}-django{51}-wagtail{70}
py{312,313}-django{52}-wagtail{71}
py{312,313,314}-django{52}-wagtail{72}

[gh-actions]
python =
3.9: py39
3.10: py310
3.11: py311
3.12: py312
3.13: py313
3.14: py314

[testenv]
package = editable
Expand All @@ -26,7 +26,7 @@ setenv =
PYTHONDEVMODE = 1
# use the Python 3.12+ sys.monitoring
py3.12: COVERAGE_CORE=sysmon
py3.13: COVERAGE_CORE=sysmon
py3.14: COVERAGE_CORE=sysmon

extras = testing

Expand All @@ -37,7 +37,7 @@ deps =

wagtail63: wagtail>=6.3,<6.4
wagtail70: wagtail>=7.0,<7.1
wagtail71: wagtail>=7.1,<7.2
wagtail72: wagtail>=7.2,<7.3

install_command = python -m pip install -U {opts} {packages}
commands =
Expand Down
Loading