From add05de82f745a717b674ada796db0e9f7153e27 Mon Sep 17 00:00:00 2001 From: Vincent Sarago Date: Tue, 7 May 2024 14:25:45 +0200 Subject: [PATCH] switch to fastapi-slim (#687) --- CHANGES.md | 3 ++- stac_fastapi/types/setup.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 69e08004..f60e95f9 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,9 +1,10 @@ # Changelog -## [Unreleased] - TBD +[Unreleased] - TBD ## Changed +* switch from `fastapi` to `fastapi-slim` to avoid installing unwanted dependencies * replace Enum with `Literal` for `FilterLang` ## [3.0.0a0] - 2024-05-06 diff --git a/stac_fastapi/types/setup.py b/stac_fastapi/types/setup.py index 0b9448e3..55f3ea10 100644 --- a/stac_fastapi/types/setup.py +++ b/stac_fastapi/types/setup.py @@ -6,7 +6,7 @@ desc = f.read() install_requires = [ - "fastapi>=0.100.0", + "fastapi-slim", "attrs>=23.2.0", "pydantic-settings>=2", "stac_pydantic>=3",