Update requirements.txt to allow pillow 11.x (#9819)

* Update requirements.txt to allow pillow 11.x

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
bob-jones-cs 2024-10-23 07:58:26 -07:00 committed by GitHub
parent 7b6bd31881
commit 160b27c0d1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 2 deletions

View File

@ -0,0 +1,5 @@
---
"gradio": minor
---
feat:Update requirements.txt to allow pillow 11.x

View File

@ -12,7 +12,7 @@ numpy>=1.0,<3.0
orjson~=3.0
packaging
pandas>=1.0,<3.0
pillow>=8.0,<11.0
pillow>=8.0,<12.0
pydantic>=2.0
python-multipart>=0.0.9,!=0.0.13 # required for fastapi forms. 0.0.13 was yanked from PyPI but micropip now ignores the yanked flag so we explicitly exclude it.
pydub
@ -24,4 +24,4 @@ tomlkit==0.12.0
typer>=0.12,<1.0; sys.platform != 'emscripten'
typing_extensions~=4.0
urllib3~=2.0; sys.platform == 'emscripten' # urllib3 is used for Lite support. Version spec can be omitted because urllib3==2.1.0 is prebuilt for Pyodide and urllib>=2.2.0 supports Pyodide as well.
uvicorn>=0.14.0; sys.platform != 'emscripten'
uvicorn>=0.14.0; sys.platform != 'emscripten'