fix: bump gradio to 5.x to resolve websockets<13 vs openenv-core>=15 conflict
Browse files
space/env/requirements.txt
CHANGED
|
@@ -4,4 +4,8 @@ pydantic>=2.0.0
|
|
| 4 |
fastapi>=0.110.0
|
| 5 |
uvicorn>=0.27.0
|
| 6 |
openenv-core[core]>=0.2.3
|
| 7 |
-
gradio>=4.40
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 4 |
fastapi>=0.110.0
|
| 5 |
uvicorn>=0.27.0
|
| 6 |
openenv-core[core]>=0.2.3
|
| 7 |
+
# gradio>=4.40 was the original target; bumped to 5.x because
|
| 8 |
+
# openenv-core 0.2.3 requires websockets>=15.0.1, while gradio 4.x
|
| 9 |
+
# pulls gradio-client 1.2 which caps websockets<13. gradio 5.x's
|
| 10 |
+
# gradio-client raised that ceiling, resolving the conflict.
|
| 11 |
+
gradio>=5.0,<6.0
|