From 54f853c001abcf32282cae3e244bbba02f500d4f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Jan 2024 00:45:19 +0000 Subject: [PATCH] Chore(deps): Update stac-pydantic requirement in /stac_fastapi/api Updates the requirements on [stac-pydantic](https://github.com/stac-utils/stac-pydantic) to permit the latest version. - [Release notes](https://github.com/stac-utils/stac-pydantic/releases) - [Changelog](https://github.com/stac-utils/stac-pydantic/blob/main/CHANGELOG.txt) - [Commits](https://github.com/stac-utils/stac-pydantic/compare/2.0.0...3.0.0) --- updated-dependencies: - dependency-name: stac-pydantic dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- stac_fastapi/api/setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stac_fastapi/api/setup.py b/stac_fastapi/api/setup.py index 1e3b8002f..04f7e385b 100644 --- a/stac_fastapi/api/setup.py +++ b/stac_fastapi/api/setup.py @@ -8,7 +8,7 @@ install_requires = [ "attrs", "pydantic[dotenv]<2", - "stac_pydantic==2.0.*", + "stac_pydantic>=2.0,<3.1", "brotli_asgi", "stac-fastapi.types", ]