0
0
mirror of https://github.com/wagtail/wagtail.git synced 2024-11-24 01:57:32 +01:00

Increase Pillow dependency range to include 9.x (#7831)

Fixes #7817
This commit is contained in:
Matt Westcott 2022-01-07 16:52:24 +00:00
parent f3f35f6322
commit 88150bf8d3
3 changed files with 3 additions and 1 deletions

View File

@ -42,6 +42,7 @@ Changelog
* Fix: Ensure the `checkbox_aria_label` is used correctly in the Bulk Actions checkboxes (Vu Pham)
* Fix: Prevent error on MySQL search backend when searching three or more terms (Aldán Creo)
* Fix: Allow wagtail.search app migrations to complete on versions of SQLite without full-text search support (Matt Westcott)
* Fix: Update Pillow dependency to allow 9.x (Matt Westcott)
2.15.1 (11.11.2021)

View File

@ -19,6 +19,7 @@ Bug fixes
* Ensure the ``checkbox_aria_label`` is used correctly in the Bulk Actions checkboxes (Vu Pham)
* Prevent error on MySQL search backend when searching three or more terms (Aldán Creo)
* Allow wagtail.search app migrations to complete on versions of SQLite without full-text search support (Matt Westcott)
* Update Pillow dependency to allow 9.x (Matt Westcott)
Upgrade considerations

View File

@ -27,7 +27,7 @@ install_requires = [
"djangorestframework>=3.11.1,<4.0",
"django-filter>=2.2,<22",
"draftjs_exporter>=2.1.5,<3.0",
"Pillow>=4.0.0,<9.0.0",
"Pillow>=4.0.0,<10.0.0",
"beautifulsoup4>=4.8,<4.10",
"html5lib>=0.999,<2",
"Willow>=1.4,<1.5",