Skip to content

Commit 1ed3c83

Browse files
jnovingerclaudep
authored andcommitted
Add support for Django 5.2
This confirms support for Django 5.2 by modifying the test matrices, classifiers, and documentation alongside currently supported versions 4.2, 5.0, and 5.1.
1 parent 92f1734 commit 1ed3c83

File tree

4 files changed

+6
-1
lines changed

4 files changed

+6
-1
lines changed

CHANGES.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ Unreleased
88
The old way of specifying a dotted path to a Storage module is still supported.
99
* Confirmed support for Python 3.13 (on Django 5.1+).
1010
* Drop support for Python 3.8.
11+
* Add support for Django 5.2
1112

1213
12.11.0
1314
=======

README.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Thumbnails for Django.
55
Features at a glance
66
====================
77

8-
- Support for Django 4.2, 5.0 and 5.1 following the `Django supported versions policy`_
8+
- Support for Django 4.2, 5.0, 5.1, and 5.2 following the `Django supported versions policy`_
99
- Storage support
1010
- Pluggable Engine support for `Pillow`_, `ImageMagick`_, `PIL`_, `Wand`_, `pgmagick`_, and `vipsthumbnail`_
1111
- Pluggable Key Value Store support (cached db, redis, and dynamodb by AWS)

pyproject.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ classifiers=[
3434
'Framework :: Django :: 4.2',
3535
'Framework :: Django :: 5.0',
3636
'Framework :: Django :: 5.1',
37+
'Framework :: Django :: 5.2',
3738
]
3839

3940
[project.urls]

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ DJANGO =
1111
4.2: django42
1212
5.0: django50
1313
5.1: django51
14+
5.2: django52
1415
TARGET =
1516
pil: pil
1617
imagemagick: imagemagick
@@ -27,6 +28,7 @@ envlist =
2728
py{39,310,311,312}-django{42}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
2829
py{310,311,312}-django{50}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
2930
py{310,311,312,313}-django{51}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
31+
py{310,311,312,313}-django{52}-{pil,imagemagick,graphicsmagick,redis,dynamodb,wand,pgmagick,dbm,vipsthumbnail}
3032

3133
[testenv]
3234
deps =
@@ -39,6 +41,7 @@ deps =
3941
django42: django>=4.2,<4.3
4042
django50: django>=5.0,<5.1
4143
django51: django>=5.1,<5.2
44+
django52: django>=5.2,<5.3
4245

4346
setenv =
4447
PYTHONPATH = {toxinidir}:{toxinidir}

0 commit comments

Comments
 (0)