Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
toxenv:
[
django42-celery53-drflatest,
django52-celery53-drflatest,
quality,
docs,
pii_check,
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,12 @@ Change Log

Unreleased
----------
[4.1.0] - 2025-04-24
~~~~~~~~~~~~~~~~~~~~

* Added django52 support.


[3.2.0] - 2023-07-31
~~~~~~~~~~~~~~~~~~~~

Expand Down
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion super_csv/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
CSV Processor.
"""

__version__ = '4.0.1'
__version__ = '4.1.0'
3 changes: 2 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down