Skip to content

Commit 7212c63

Browse files
committed
Add support for Django 5.2
1 parent 07d50b6 commit 7212c63

File tree

4 files changed

+11
-0
lines changed

4 files changed

+11
-0
lines changed

.builds/py312-alpine.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ tasks:
4141
- tox-django51-postgres: |
4242
cd django-afip
4343
tox -e django51-postgres
44+
- tox-django52-postgres: |
45+
cd django-afip
46+
tox -e django52-postgres
4447
- lint: |
4548
cd django-afip
4649
tox -e mypy,ruff,vermin

docs/changelog.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ Check the `latest tags`_ or `PyPI`_ for the latest stable release.
1313

1414
Any breaking changes which require intervention will be mentioned here.
1515

16+
13.2.1
17+
------
18+
19+
- Add support for Django 5.2.
20+
1621
13.2.0
1722
------
1823

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ classifiers = [
1616
"Framework :: Django :: 4.2",
1717
"Framework :: Django :: 5.0",
1818
"Framework :: Django :: 5.1",
19+
"Framework :: Django :: 5.2",
1920
"Intended Audience :: Developers",
2021
"Operating System :: OS Independent",
2122
"Programming Language :: Python :: 3",

tox.ini

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ extras =
99
deps =
1010
django42: Django>=4.0,<4.2
1111
django50: Django>=5.0,<5.1
12+
django51: Django>=5.1,<5.2
13+
django52: Django>=5.2,<5.3
1214
commands = pytest -vv -m "not live" {posargs}
1315
setenv =
1416
PYTHONPATH={toxinidir}

0 commit comments

Comments
 (0)