From 8f7bf34e247d32fdf9b175443b4d818c640189dc Mon Sep 17 00:00:00 2001 From: abdullahQureshee Date: Thu, 24 Apr 2025 15:10:48 +0500 Subject: [PATCH] feat: add django52 support --- .github/workflows/ci.yml | 1 + CHANGELOG.rst | 6 ++++++ setup.py | 1 + super_csv/__init__.py | 2 +- tox.ini | 3 ++- 5 files changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3df3d2c..bd3527b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,6 +18,7 @@ jobs: toxenv: [ django42-celery53-drflatest, + django52-celery53-drflatest, quality, docs, pii_check, diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 2dd70ee..6ec47dc 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -13,6 +13,12 @@ Change Log Unreleased ---------- +[4.1.0] - 2025-04-24 +~~~~~~~~~~~~~~~~~~~~ + +* Added django52 support. + + [3.2.0] - 2023-07-31 ~~~~~~~~~~~~~~~~~~~~ diff --git a/setup.py b/setup.py index 8751158..e19ef78 100644 --- a/setup.py +++ b/setup.py @@ -85,6 +85,7 @@ def is_requirement(line): 'Development Status :: 3 - Alpha', 'Framework :: Django', 'Framework :: Django :: 4.2', + 'Framework :: Django :: 5.2', 'Intended Audience :: Developers', 'License :: OSI Approved :: Apache Software License', 'Natural Language :: English', diff --git a/super_csv/__init__.py b/super_csv/__init__.py index 7107531..cdf19a9 100644 --- a/super_csv/__init__.py +++ b/super_csv/__init__.py @@ -2,4 +2,4 @@ CSV Processor. """ -__version__ = '4.0.1' +__version__ = '4.1.0' diff --git a/tox.ini b/tox.ini index 1ea8d91..3e5d09a 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,10 @@ [tox] -envlist = py{311,312}-django{42}-celery{50}-drf{latest} +envlist = py{311,312}-django{42,52}-celery{50}-drf{latest} [testenv] deps = django42: Django>=4.2,<4.3 + django52: Django>=5.2,<5.3 drflatest: djangorestframework celery53: -r{toxinidir}/requirements/celery53.txt -r{toxinidir}/requirements/test.txt