diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 0e2581a7..c064fbc2 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -6,7 +6,7 @@ repos: language_version: python - repo: https://github.com/PyCQA/isort - rev: 5.4.2 + rev: 5.12.0 hooks: - id: isort language_version: python diff --git a/CHANGES.md b/CHANGES.md index 4cd8b7e3..d3eb180c 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,8 +1,9 @@ # Release Notes -## Unreleased +## 0.3.2 (2023-03-14) * update titiler requirement to `0.10.2` +* fix maximum version of FastAPI to 0.92 (to avoid breaking change of starlette >0.25) ## 0.3.1 (2022-12-16) @@ -30,6 +31,10 @@ {endpoint}/mosaic/20200307aC0853900w361030/tiles/0/0/0 ``` +## 0.2.3 (2023-03-14) + +* fix maximum version of FastAPI to 0.92 (to avoid breaking change of starlette >0.25) + ## 0.2.2 (2022-12-16) * update Type information for `dependencies.get_stac_item` diff --git a/setup.py b/setup.py index 9bbe9b48..9bd600c3 100644 --- a/setup.py +++ b/setup.py @@ -10,6 +10,8 @@ "titiler.mosaic>=0.10.2,<0.11", "geojson-pydantic>=0.4,<0.5", "stac-pydantic==2.0.*", + "fastapi>=0.87,<0.92", + "starlette>=0.21.0,<0.25", ] extra_reqs = { "dev": ["pre-commit"],