From 28b8c84cc96bf508448f4b301c9b1e3f507b8019 Mon Sep 17 00:00:00 2001 From: Ian Schneider Date: Tue, 27 May 2025 11:29:03 -0600 Subject: [PATCH] deps - exclude click version that breaks tests see https://github.com/pallets/click/issues/2939 for details test breakage example: https://github.com/planetlabs/planet-client-python/actions/runs/15197299407/job/42744343858?pr=1146 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index bf915176..59ef0923 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ name = "planet" authors = [{ name = "Planet", email = "python-sdk-contributors@planet.com" }] description = "Planet SDK for Python" dependencies = [ - "click>=8.0", + "click (>=8.0,!=8.2.1)", "geojson", "httpx>=0.28.0", "jsonschema",