-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Closed
Labels
core[Component] This issue is related to the core interface and implementation[Component] This issue is related to the core interface and implementation
Description
FastAPI version constraint typo allows incompatible versions (0.119.0+)
Describe the bug
The pyproject.toml contains a typo in the FastAPI version constraint that allows
incompatible FastAPI versions to be installed, causing OpenAPI schema generation
failures.
Current constraint:
"fastapi>=0.115.0, <1.119.0"
Should be:
"fastapi>=0.115.0, <0.119.0"
The typo <1.119.0 (one point one one nine) allows FastAPI 0.119.0+ to be installed, which
introduces breaking changes in OpenAPI schema generation (see
fastapi/fastapi#14168).
fapont
Metadata
Metadata
Labels
core[Component] This issue is related to the core interface and implementation[Component] This issue is related to the core interface and implementation