We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 335de96 commit eec566dCopy full SHA for eec566d
CHANGELOG.rst
@@ -66,6 +66,8 @@ Fixes
66
Other
67
~~~~~
68
69
+* Test against Django 5.2 pre-release.
70
+
71
* **Resend:** Remove Anymail's workaround for an earlier Resend API bug with
72
punctuation in address display names. Resend has fixed the bug.
73
pyproject.toml
@@ -45,6 +45,7 @@ classifiers = [
45
"Programming Language :: Python :: 3.10",
46
"Programming Language :: Python :: 3.11",
47
"Programming Language :: Python :: 3.12",
48
+ "Programming Language :: Python :: 3.13",
49
"License :: OSI Approved :: BSD License",
50
"Topic :: Communications :: Email",
51
"Topic :: Software Development :: Libraries :: Python Modules",
@@ -55,6 +56,7 @@ classifiers = [
55
56
"Framework :: Django :: 4.2",
57
"Framework :: Django :: 5.0",
58
"Framework :: Django :: 5.1",
59
+ "Framework :: Django :: 5.2",
60
"Environment :: Web Environment",
61
]
62
tox.ini
@@ -19,11 +19,11 @@ envlist =
19
django41-py{38,39,310,py38,py39}-all
20
# Django 4.0: Python 3.8, 3.9, 3.10
21
django40-py{39,310,py38,py39}-all
22
- # ... then prereleases (if available) and current development:
+ # ... then pre-releases (if available) and current development:
23
# Django 5.2 pre-release: Python 3.10, 3.11, 3.12 and 3.13
24
- # django52-py{310,311,312,313}-all
25
- # Django 5.2 dev: Python 3.10, 3.11, 3.12 and 3.13
26
- djangoDev-py{310,311,312,313}-all
+ django52-py{310,311,312,313}-all
+ # Django 6.0 dev: Python 3.12 and 3.13
+ djangoDev-py{312,313}-all
27
# ... then partial installation (limit extras):
28
django51-py312-{none,amazon_ses,postal,resend}
29
# tox requires isolated builds to use pyproject.toml build config:
0 commit comments