Skip to content

Commit c2a8fb5

Browse files
authored
Maintenance (v2.7.6) (#40)
1 parent 0229528 commit c2a8fb5

File tree

5 files changed

+18
-13
lines changed

5 files changed

+18
-13
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,15 @@ jobs:
2929
strategy:
3030
matrix:
3131
python-version: ['3.10', '3.11', '3.12', '3.13', '3.14', ]
32-
django-version: ['42', '51', '52', ]
32+
django-version: ['42', '52', '60', ]
3333

3434
exclude:
35+
- python-version: '3.11'
36+
django-version: 60
37+
- python-version: '3.10'
38+
django-version: 60
3539
- python-version: '3.9'
3640
django-version: 52
37-
- python-version: '3.9'
38-
django-version: 51
3941
- python-version: "3.13"
4042
django-version: 42
4143

.pre-commit-config.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
repos:
55
- repo: https://github.com/astral-sh/ruff-pre-commit
6-
rev: v0.14.0
6+
rev: v0.14.8
77
hooks:
88
# Run the Ruff formatter.
99
- id: ruff-format
@@ -20,19 +20,19 @@ repos:
2020
files: '(?:README\.md|\.ambient-package-update\/templates\/snippets\/.*\.tpl|docs\/.*\.(?:md|rst))'
2121

2222
- repo: https://github.com/asottile/pyupgrade
23-
rev: v3.20.0
23+
rev: v3.21.2
2424
hooks:
2525
- id: pyupgrade
2626
args: [ --py310-plus ]
2727

2828
- repo: https://github.com/adamchainz/django-upgrade
29-
rev: 1.29.0
29+
rev: 1.29.1
3030
hooks:
3131
- id: django-upgrade
3232
args: [--target-version, "4.2"]
3333

3434
- repo: https://github.com/adamchainz/djade-pre-commit
35-
rev: 1.6.0
35+
rev: 1.7.0
3636
hooks:
3737
- id: djade
3838
args: [--target-version, "4.2"]

CHANGES.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
22

3+
**2.7.6** (2025-12-11)
4+
* Maintenance updates via ambient-package-update
5+
36
**2.7.5** (2025-10-15)
47
* Maintenance updates via ambient-package-update
58

django_pony_express/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
"""Class-based emails including a test suite for Django"""
22

3-
__version__ = "2.7.5"
3+
__version__ = "2.7.6"

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ classifiers = [
1313
"Environment :: Web Environment",
1414
"Framework :: Django",
1515
"Framework :: Django :: 4.2",
16-
"Framework :: Django :: 5.1",
1716
"Framework :: Django :: 5.2",
17+
"Framework :: Django :: 6.0",
1818
"Intended Audience :: Developers",
1919
"License :: OSI Approved :: MIT License",
2020
"Natural Language :: English",
@@ -204,7 +204,7 @@ line-ending = "auto"
204204

205205
[tool.tox]
206206
requires = ["tox>=4", "tox-uv>=1.0.0"]
207-
env_list = ["django42", "django51", "django52", ]
207+
env_list = ["django42", "django52", "django60", ]
208208

209209
[tool.tox.env_run_base]
210210
# Django deprecation overview: https://www.djangoproject.com/download/
@@ -219,12 +219,12 @@ commands = [
219219
[tool.tox.env.django42]
220220
deps = ["Django==4.2.*"]
221221

222-
[tool.tox.env.django51]
223-
deps = ["Django==5.1.*"]
224-
225222
[tool.tox.env.django52]
226223
deps = ["Django==5.2.*"]
227224

225+
[tool.tox.env.django60]
226+
deps = ["Django==6.0.*"]
227+
228228
[tool.tox.gh_actions.python]
229229
"3.10" = "py310"
230230
"3.11" = "py311"

0 commit comments

Comments
 (0)