Skip to content

Commit ac30586

Browse files
committed
Drop support for EOL Wagtail 5.2 and 6.4
1 parent a7971ec commit ac30586

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
strategy:
99
matrix:
1010
python-version: ["3.9", "3.10", "3.11", "3.12", "3.13"]
11-
wagtail-version: ["5.2", "6.3", "6.4", "7.0", "7.1"]
11+
wagtail-version: ["6.3", "7.0", "7.1"]
1212
django-version: ["4.2", "5.1", "5.2"]
1313
exclude:
1414
# Don't test django with incompatible python versions

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
- Add support for Wagtail 7.0 (@nickmoreton)
1111

1212
### Changed
13-
- Add CI testing for Wagtail 6.4 & 7.0 (@nickmoreton)
13+
- Add CI testing for 7.0 (@nickmoreton)
1414
- Add CI testing for Django 5.2 (@nickmoreton)
1515
- Add test page model for polyfill field (@marteinn)
1616

@@ -20,6 +20,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2020
- Ignore local sqlite files (@marteinn)
2121

2222
### Removed
23+
- Drop support for EOL Wagtail 5.2 (@marteinn)
24+
- Drop support for EOL Wagtail 6.4 (@marteinn)
2325
- Drop Wagtail testing for 5.0 (@nickmoreton)
2426
- Drop Django testing for 5.0 (@nickmoreton)
2527

setup.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from setuptools import find_packages, setup
66

7-
install_requires = ["wagtail>=5.2"]
7+
install_requires = ["wagtail>=6.3"]
88

99
tests_require = ["pytest-django", "wagtail-factories", "pytest"]
1010

@@ -43,7 +43,6 @@
4343
"Framework :: Django :: 5.1",
4444
"Framework :: Django :: 5.2",
4545
"Framework :: Wagtail",
46-
"Framework :: Wagtail :: 5",
4746
"Framework :: Wagtail :: 6",
4847
"Framework :: Wagtail :: 7",
4948
"Intended Audience :: Developers",

0 commit comments

Comments
 (0)