Skip to content

Commit 34ff684

Browse files
feat: add support for django5.2
1 parent da0da7a commit 34ff684

5 files changed

Lines changed: 10 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [ubuntu-latest]
1818
python-version: ['3.8', '3.11', '3.12']
19-
toxenv: ['django42']
19+
toxenv: ['django42', 'django52']
2020

2121
steps:
2222
- uses: actions/checkout@v1

HISTORY.rst

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
History
44
-------
55

6+
2.4.0 (2025-04-22)
7+
------------------
8+
9+
* Add support for django 5.2
10+
611
1.0.0 (2020-05-29)
712
------------------
813

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,5 +139,6 @@ def get_version(*file_paths):
139139
'Programming Language :: Python :: 3.12',
140140
'Framework :: Django',
141141
'Framework :: Django :: 4.2',
142+
'Framework :: Django :: 5.2',
142143
],
143144
)

src/enmerkar_underscore/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .vendor.markey.machine import parse_arguments, tokenize
1515
from .vendor.markey.tools import TokenStream
1616

17-
__version__ = '2.3.1'
17+
__version__ = '2.4.0'
1818

1919
def extract(fileobj, keywords, comment_tags, options):
2020
"""Extracts translation messages from underscore template files.

tox.ini

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{38,311,312}-django{42}
2+
envlist = py{38,311,312}-django{42,52}
33

44
[testenv]
55
skipsdist = True
@@ -8,6 +8,7 @@ deps =
88
setuptools
99
-r{toxinidir}/requirements/tox.txt
1010
django42: Django>=4.2,<4.3
11+
django52: Django>=5.2,<5.3
1112
-e.
1213
commands =
1314
python -Wd -m pytest {posargs}

0 commit comments

Comments
 (0)