Skip to content

Commit fb1f828

Browse files
authored
Support Django 5.2 (#2037)
1 parent 8a65860 commit fb1f828

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

docs/changelog.rst

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Changelog
99
------------------
1010

1111
- Add flag to ignore empty rows in XLSX import (`2028 <https://github.com/django-import-export/django-import-export/issues/2028>`_)
12+
- Add support for Django 5.2 (`2037 <https://github.com/django-import-export/django-import-export/pull/2037>`_)
1213

1314
4.3.5 (2025-02-01)
1415
------------------

pyproject.toml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ classifiers = [
2121
"Framework :: Django :: 4.2",
2222
"Framework :: Django :: 5.0",
2323
"Framework :: Django :: 5.1",
24+
"Framework :: Django :: 5.2",
2425
"Intended Audience :: Developers",
2526
"License :: OSI Approved :: BSD License",
2627
"Operating System :: OS Independent",

tox.ini

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[tox]
22
min_version = 4.0
33
envlist =
4-
{py39,py310,py311}-{django42}
5-
{py310,py311,py312,py313}-{django50,django51}
6-
{py312,py313}-djangomain
4+
py{39,310,311}-django{42}
5+
py{310,311,312,313}-django{50,51,52}
6+
py{312,313}-djangomain
77
py313-djangomain-tablibdev
88

99
[gh-actions]
@@ -28,6 +28,7 @@ deps =
2828
django42: Django>=4.2,<5.0
2929
django50: Django>=5.0,<5.1
3030
django51: Django>=5.1,<5.2
31+
django52: Django>=5.2a1,<5.3
3132
djangomain: https://github.com/django/django/archive/main.tar.gz
3233
.[tests]
3334

0 commit comments

Comments
 (0)