Skip to content

Commit d4888b7

Browse files
committed
build: align declared pydantic floor with FastAPI 0.136 transitive requirement
FastAPI 0.136 raises its minimum pydantic requirement to >=2.9.0. Our declared pin was still >=2.4.0,<2.10.0 — Poetry's solver enforced the effective floor via the lock, but the declared metadata was misleading and an unlocked install could surface confusing resolution attempts. Update the explicit pin to >=2.9.0,<2.10.0 so the metadata reflects reality. No runtime change; resolved version remains 2.9.2.
1 parent f285fbf commit d4888b7

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

poetry.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ dependencies = [
4141
"sqlalchemy-celery-beat (>=0.8.4,<0.9.0)",
4242
"aioresponses (>=0.7.7,<0.8.0)",
4343
"itsdangerous (>=2.1.2,<3.0.0)",
44-
"pydantic (>=2.4.0,<2.10.0)",
44+
"pydantic (>=2.9.0,<2.10.0)",
4545
"pyyaml (>=6.0.1,<7.0.0)",
4646
"python-nomad (>=2.0.0,<3.0.0)",
4747
"sqlalchemy (>=2.0.34,<3.0.0)",

0 commit comments

Comments
 (0)