From 17585b7c815e6a95c20fa9f59f729ec20d1ecf87 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 3 Jan 2024 03:32:29 +0000 Subject: [PATCH] Update pillow requirement from ~=9.1.0 to ~=10.2.0 Updates the requirements on [pillow](https://github.com/python-pillow/Pillow) to permit the latest version. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/9.1.0...10.2.0) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- ext/requirements-dev.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/requirements-dev.txt b/ext/requirements-dev.txt index f33e0ed..03e2883 100644 --- a/ext/requirements-dev.txt +++ b/ext/requirements-dev.txt @@ -1,4 +1,4 @@ -pillow ~= 9.1.0 +pillow ~= 10.2.0 numpy >= 1.21.5 python-dateutil >= 2.8.2 coverage >= 6.3.1 diff --git a/setup.py b/setup.py index 3191aed..ffcedff 100644 --- a/setup.py +++ b/setup.py @@ -33,7 +33,7 @@ def readme(logo_end_line=0): ] requires = [ - "pillow >= 9.0.1,< 9.2.0", + "pillow >= 9.0.1,< 10.3.0", "numpy >= 1.21.5", "python-dateutil >= 2.8.2" ]