From c2b34e718014d69dc3d7a231f819a3ee2802aa6c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Oct 2023 20:28:39 +0000 Subject: [PATCH] Bump pillow from 6.2.2 to 10.0.1 Bumps [pillow](https://github.com/python-pillow/Pillow) from 6.2.2 to 10.0.1. - [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/6.2.2...10.0.1) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index 8a22d70..07cb035 100644 --- a/requirements.txt +++ b/requirements.txt @@ -2,5 +2,5 @@ lxml bottle python-magic # Versions including 7 don't support python 2.x -pillow<7 +pillow<11 mock diff --git a/setup.py b/setup.py index 32f945b..44b0c4d 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ ], extras_require={ ':python_version>="3.0"': ["Pillow>=3.2.0"], - ':python_version<"3.0"': ["Pillow==6.2.2"], + ':python_version<"3.0"': ["Pillow==10.0.1"], }, test_suite="tests", tests_require=["mock"])