From 79b7dc33748076eea2c4a6fb015fe414871930c1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 May 2026 03:45:52 +0000 Subject: [PATCH] chore(deps):(deps): update stac-valid requirement Updates the requirements on [stac-valid](https://github.com/stac-utils/stac-validator) to permit the latest version. - [Release notes](https://github.com/stac-utils/stac-validator/releases) - [Changelog](https://github.com/StacLabs/stac-validator/blob/main/CHANGELOG.md) - [Commits](https://github.com/stac-utils/stac-validator/compare/v4.2.2...v4.4.0) --- updated-dependencies: - dependency-name: stac-valid dependency-version: 4.4.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 62a182b..e5c78b2 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,7 +16,7 @@ dependencies = [ "requests>=2.32.4", "jsonschema>=4.25.0", "click>=8.1.8", - "stac-valid~=4.2.2", + "stac-valid>=4.2.2,<4.5.0", "PyYAML", "python-dotenv", ] @@ -26,7 +26,7 @@ dev = [ "pytest", "requests-mock", "types-setuptools", - "stac-valid[pydantic]~=4.2.2", + "stac-valid[pydantic]>=4.2.2,<4.5.0", ] docs = [ "sphinx>=8.2.3", @@ -35,7 +35,7 @@ docs = [ "myst-parser>=4.0.1", "sphinx-autodoc-typehints>=3.2.0", ] -pydantic = ["stac-valid[pydantic]~=4.2.2"] +pydantic = ["stac-valid[pydantic]>=4.2.2,<4.5.0"] [project.urls] Homepage = "https://github.com/stac-utils/stac-check"