mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Add python-typing-inspection runtime dependency. This was added to
fastapi as a dependency in 0.128.2[1] but in practice this doesn't break
anything as fastapi depends on pydantic which already has a dependency
on typing-inspection.
Release Notes:
* https://fastapi.tiangolo.com/release-notes/#01362-2026-05-23
* https://fastapi.tiangolo.com/release-notes/#01363-2026-05-23
[1] 97145588f5
Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
[Marcus: clarify when the dependency was added to fastapi, add release
notes]
Signed-off-by: Marcus Hoffmann <buildroot@bubu1.eu>
14 lines
548 B
Plaintext
14 lines
548 B
Plaintext
config BR2_PACKAGE_PYTHON_FASTAPI
|
|
bool "python-fastapi"
|
|
depends on BR2_PACKAGE_HOST_RUSTC_TARGET_ARCH_SUPPORTS # python-pydantic -> python-pydantic-core
|
|
select BR2_PACKAGE_PYTHON_ANNOTATED_DOC # runtime
|
|
select BR2_PACKAGE_PYTHON_PYDANTIC # runtime
|
|
select BR2_PACKAGE_PYTHON_STARLETTE # runtime
|
|
select BR2_PACKAGE_PYTHON_TYPING_EXTENSIONS # runtime
|
|
select BR2_PACKAGE_PYTHON_TYPING_INSPECTION # runtime
|
|
help
|
|
FastAPI framework, high performance, easy to learn, fast to
|
|
code, ready for production.
|
|
|
|
https://github.com/fastapi/fastapi
|