Spaces:
Running on CPU Upgrade
Running on CPU Upgrade
Commit ·
d237855
1
Parent(s): 03814e3
fix: loosen FastAPI pin for Gradio Space build
Browse files- pyproject.toml +1 -1
- requirements.txt +1 -1
pyproject.toml
CHANGED
|
@@ -8,7 +8,7 @@ version = "1.0.0"
|
|
| 8 |
description = "Edge CDN Cache Optimizer - OpenEnv RL Environment"
|
| 9 |
requires-python = ">=3.11"
|
| 10 |
dependencies = [
|
| 11 |
-
"fastapi=
|
| 12 |
"uvicorn==0.29.0",
|
| 13 |
"pydantic==2.7.1",
|
| 14 |
"openai>=2.7.2",
|
|
|
|
| 8 |
description = "Edge CDN Cache Optimizer - OpenEnv RL Environment"
|
| 9 |
requires-python = ">=3.11"
|
| 10 |
dependencies = [
|
| 11 |
+
"fastapi>=0.115.2,<1.0",
|
| 12 |
"uvicorn==0.29.0",
|
| 13 |
"pydantic==2.7.1",
|
| 14 |
"openai>=2.7.2",
|
requirements.txt
CHANGED
|
@@ -1,4 +1,4 @@
|
|
| 1 |
-
fastapi=
|
| 2 |
uvicorn==0.29.0
|
| 3 |
pydantic==2.7.1
|
| 4 |
openai>=2.7.2
|
|
|
|
| 1 |
+
fastapi>=0.115.2,<1.0
|
| 2 |
uvicorn==0.29.0
|
| 3 |
pydantic==2.7.1
|
| 4 |
openai>=2.7.2
|