fix: Pin fastapi to avoid picking up spurious versions in test pypi (#2409)

as titled
This commit is contained in:
Hardik Shah 2025-06-05 15:33:30 -07:00 committed by GitHub
parent 446893f791
commit 102516f33c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ classifiers = [
] ]
dependencies = [ dependencies = [
"aiohttp", "aiohttp",
"fastapi", "fastapi>=0.115.0,<1.0",
"fire", "fire",
"httpx", "httpx",
"huggingface-hub", "huggingface-hub",

2
uv.lock generated
View file

@ -1561,7 +1561,7 @@ unit = [
[package.metadata] [package.metadata]
requires-dist = [ requires-dist = [
{ name = "aiohttp" }, { name = "aiohttp" },
{ name = "fastapi" }, { name = "fastapi", specifier = ">=0.115.0,<1.0" },
{ name = "fire" }, { name = "fire" },
{ name = "h11", specifier = ">=0.16.0" }, { name = "h11", specifier = ">=0.16.0" },
{ name = "httpx" }, { name = "httpx" },