build(orchestrator): pin FastAPI runtime dependencies

This commit is contained in:
2026-07-26 23:37:55 +00:00
parent ff4da6f41e
commit 87c5eead65
9 changed files with 219 additions and 7 deletions
+4 -1
View File
@@ -62,7 +62,10 @@ class TestWheelInstall(unittest.TestCase):
# Installing the freshly-built wheel must succeed — fail if it doesn't.
install = subprocess.run(
[str(cls.venv_py), "-m", "pip", "install", "--quiet", str(wheels[0])],
[
str(cls.venv_py), "-m", "pip", "install", "--quiet",
"--force-reinstall", "--no-deps", str(wheels[0]),
],
capture_output=True, text=True, check=False,
)
if install.returncode != 0: