Skip to content
Merged
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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,16 @@

## Unreleased

- Add testing/support for Wagtail 7.2
- Add testing/support for Wagtail 7.4 LTS
- Add testing/support for Wagtail 7.3
- Drop testing/support for Wagtail 7.1 and 7.2 (end of life upstream)
- Drop testing/support for Python 3.9
- Add testing/support for Python 3.14
- Pin the minimum supported Wagtail version to 7.0
- Drop Wagtail 5.x and 6.x from the test matrix; now covering Wagtail 7.0, 7.3, and 7.4
- Add Django 6.0 and Python 3.14 to the test matrix
- Fix invalid `Django 5.1 + Wagtail 7.3` combination in the test matrix (Wagtail 7.3 does not support Django 5.1)
- Remove deprecated `default_app_config` from `birdbath/__init__.py`

## v2.0.1 (2024-10-22)

Expand Down
2 changes: 0 additions & 2 deletions birdbath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,3 @@
"""

__version__ = "2.0.1"

default_app_config = "birdbath.apps.BirdBathConfig"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ name = "birdbath"
include = ["LICENSE", "CHANGELOG.md", "README.md"]

[tool.ruff]
target-version = "py313"
target-version = "py310"

exclude = [
".github",
Expand Down
2 changes: 2 additions & 0 deletions tests/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,5 @@
SECRET_KEY = "not-so-secret-for-tests"

STATIC_URL = "/static/"

USE_TZ = True
15 changes: 9 additions & 6 deletions tox.ini
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
[tox]
envlist =
py{310,311,312}-django42-wagtail{63,70,72}
py{310,311,312,313}-django{51,52}-wagtail{63,70,72}
py314-django52-wagtail72

py{310,311,312}-django42-wagtail{70,73}
py{310,311,312,313}-django{51,52}-wagtail70
py{310,311,312,313,314}-django52-wagtail{73,74}
py{312,313,314}-django60-wagtail{73,74}
isolated_build = True

[gh-actions]
Expand All @@ -19,16 +19,19 @@ deps =
django42: Django>=4.2,<4.3
django51: Django>=5.1,<5.2
django52: Django>=5.2,<5.3
wagtail63: wagtail>=6.3,<6.4
django60: Django>=6.0,<6.1
wagtail70: wagtail>=7.0,<7.1
wagtail72: wagtail>=7.2,<7.3
wagtail73: wagtail>=7.3,<7.4
wagtail74: wagtail>=7.4,<7.5
pytest
pytest-django
extras = dev
commands =
pytest {posargs}

[testenv:lint]
deps =
ruff==0.14.6
commands =
ruff check .
ruff format . --check
Loading