Skip to content

Commit e30a1df

Browse files
abdullahQuresheefeanil
authored andcommitted
feat: add support for django5.2
1 parent 5dbdde6 commit e30a1df

5 files changed

Lines changed: 11 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.11', '3.12']
19-
toxenv: ['django42']
19+
toxenv: ['django42', 'django52']
2020

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

HISTORY.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22
33
History
44
-------
5+
6+
2.4.0 (2025-04-22)
7+
------------------
8+
9+
* Add support for django 5.2
10+
511
2.0.0 (2020-05-29)
612
------------------
713

setup.py

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

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{311,312}-django{42}
2+
envlist = py{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)