Xqt has submitted this change. (
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1197675?usp=email )
Change subject: Tests: Fix Pillow requirements
......................................................................
Tests: Fix Pillow requirements
Bug: T407691
Change-Id: I70bfe303c11a86851b6cdb5053066f4a5dddedc6
---
M requirements.txt
M setup.py
2 files changed, 2 insertions(+), 2 deletions(-)
Approvals:
Xqt: Verified; Looks good to me, approved
diff --git a/requirements.txt b/requirements.txt
index ef34875..42f78a5 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -43,7 +43,7 @@
# GUI
Pillow==10.4.0; platform_python_implementation == "PyPy" and python_version <
"3.9"
-Pillow>=11.1.0,<11.3.0; platform_python_implementation == "PyPy" and
python_version > "3.9" and python_version < "3.11"
+Pillow>=11.1.0,<11.3.0; platform_python_implementation == "PyPy" and
python_version >= "3.9" and python_version < "3.11"
Pillow>=11.1.0; platform_python_implementation == "PyPy" and python_version >=
"3.11"
Pillow==10.4.0; platform_python_implementation != "PyPy" and python_version <
"3.9"
Pillow>=11.1.0,<11.3.0; platform_python_implementation != "PyPy" and
python_version == "3.9"
diff --git a/setup.py b/setup.py
index 28821be..806f3ec 100755
--- a/setup.py
+++ b/setup.py
@@ -49,7 +49,7 @@
'Pillow==10.4.0; platform_python_implementation == "PyPy" '
'and python_version < "3.9"',
'Pillow>=11.1.0,<11.3.0; platform_python_implementation == "PyPy" '
- 'and python_version > "3.9" and python_version < "3.11"',
+ 'and python_version >= "3.9" and python_version < "3.11"',
'Pillow>=11.1.0; platform_python_implementation == "PyPy" '
'and python_version >= "3.11"',
'Pillow==10.4.0; platform_python_implementation != "PyPy" '
--
To view, visit
https://gerrit.wikimedia.org/r/c/pywikibot/core/+/1197675?usp=email
To unsubscribe, or for help writing mail filters, visit
https://gerrit.wikimedia.org/r/settings?usp=email
Gerrit-MessageType: merged
Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: I70bfe303c11a86851b6cdb5053066f4a5dddedc6
Gerrit-Change-Number: 1197675
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <[email protected]>
Gerrit-Reviewer: Xqt <[email protected]>
_______________________________________________
Pywikibot-commits mailing list -- [email protected]
To unsubscribe send an email to [email protected]