Skip to content

Commit

Permalink
Removed support for djangorestframework < 3.14.x
Browse files Browse the repository at this point in the history
Includes:
- Updated release notes for upcoming 3.1 release
- Updated required Pillow version
  • Loading branch information
respondcreate committed Jan 21, 2024
1 parent 71f138a commit 23161e3
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
3 changes: 0 additions & 3 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,6 @@ Compatibility

- `Django REST Framework <http://www.django-rest-framework.org/>`_:

- 3.11.x
- 3.12.x
- 3.13.x
- 3.14.x

Documentation
Expand Down
6 changes: 6 additions & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ Table of Contents

Release Notes
=============
3.1
^^^
- If available when resizing, ``Image.Resampling.LANCZOS`` will be used instead of ``Image.ANTIALIAS``. Thanks, `@alexei <https://github.com/alexei>`_!
- Removed support for djangorestframework < 3.14.x.
- Added support for Django 5.0.

3.0
^^^
- Removed support for Django < 3.x. Thanks, `@browniebroke <https://github.com/browniebroke>`_!
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ Django Compatibility
Dependencies
------------

- ``Pillow``>= 2.4.x
- ``Pillow``>= 6.2.x

``django-versatileimagefield`` depends on the excellent
`Pillow <https://pillow.readthedocs.io>`__ fork of ``PIL``. If you
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
setup(
name='django-versatileimagefield',
packages=find_packages(),
version='3.0',
version='3.1',
author='Jonathan Ellenberger',
author_email='[email protected]',
url='http://github.com/respondcreate/django-versatileimagefield/',
Expand All @@ -16,7 +16,7 @@
long_description=open('README.rst').read(),
zip_safe=False,
install_requires=[
'Pillow>=2.4.0',
'Pillow>=6.2.0',
'python-magic>=0.4.22,<1.0.0',
'Django>=3.0',
],
Expand All @@ -33,6 +33,7 @@
'Framework :: Django :: 3.2',
'Framework :: Django :: 4.0',
'Framework :: Django :: 4.1',
'Framework :: Django :: 5.0',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
Expand Down

0 comments on commit 23161e3

Please sign in to comment.