From e368638cd263e39732714a4ad65fb74ae80d9175 Mon Sep 17 00:00:00 2001 From: vincentsarago Date: Tue, 7 May 2024 10:14:49 +0200 Subject: [PATCH] switch to fastapi-slim --- CHANGES.md | 6 ++++++ stac_fastapi/types/setup.py | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGES.md b/CHANGES.md index 530a0119..3fe86095 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,5 +1,11 @@ # Changelog +[Unreleased] - TBD + +## Changed + +* switch from `fastapi` to `fastapi-slim` to avoid installing unwanted dependencies + ## [3.0.0a0] - 2024-05-06 ### Added 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",