Skip to content

Commit

Permalink
Doc updates, removed Pillow 'top end' constraint
Browse files Browse the repository at this point in the history
  • Loading branch information
respondcreate committed Oct 30, 2019
1 parent fb28bfc commit 40a5f82
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
10 changes: 8 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,12 @@ Compatibility
- 1.11.x
- 2.0.x
- 2.1.x
- 2.2.x

.. note:: The 1.4 release dropped support for Django 1.5.x & 1.6.x.
.. note:: The 1.7 release dropped support for Django 1.7.x.

- `Pillow <https://pillow.readthedocs.io/en/latest/index.html>`_ >=2.4.0,<=6.0.0
- `Pillow <https://pillow.readthedocs.io/en/latest/index.html>`_ >=2.4.0

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

Expand All @@ -65,7 +66,7 @@ Compatibility
Code
====

``django-versatileimagefield`` is hosted on `github <https://github.com/WGBH/django-versatileimagefield>`_.
``django-versatileimagefield`` is hosted on `github <https://github.com/respondcreate/django-versatileimagefield>`_.


Table of Contents
Expand All @@ -86,6 +87,11 @@ Table of Contents

Release Notes
=============
1.11
^^^^
- Added Django 2.2.x and Django REST Framework 3.10.x compatibility.
- Added Pillow 6.2.x compatibility.

1.10
^^^^
- Squashed a bug that prevented calling ``len()`` on ``InMemoryUploadedFile`` instances. This change will help make post processing tasks for newly uploaded images – like uploading files to S3 or other remote storage – more straight-forward. Thanks, `@jxltom <https://github.com/jxltom>`_!
Expand Down
3 changes: 2 additions & 1 deletion docs/installation.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,12 @@ Django Compatibility
- 1.11.x
- 2.0.x
- 2.1.x
- 2.2.x

Dependencies
------------

- ``Pillow`` 2.4.x thru 6.0.0
- ``Pillow``>= 2.4.x

``django-versatileimagefield`` depends on the excellent
`Pillow <https://pillow.readthedocs.io>`__ fork of ``PIL``. If you
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"creating new images from the one assigned to the field.",
long_description=open('README.rst').read(),
zip_safe=False,
install_requires=['Pillow>=2.4.0,<6.2.0'],
install_requires=['Pillow>=2.4.0'],
include_package_data=True,
keywords=[
'django',
Expand All @@ -30,6 +30,7 @@
'Framework :: Django :: 1.11',
'Framework :: Django :: 2.0',
'Framework :: Django :: 2.1',
'Framework :: Django :: 2.2',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
Expand Down

0 comments on commit 40a5f82

Please sign in to comment.