From cdc07871de92c7787cafe114a8f3020adf495182 Mon Sep 17 00:00:00 2001 From: Valentin Oliver Melberg Loftsson <23453691+valentinoli@users.noreply.github.com> Date: Fri, 19 Sep 2025 12:58:36 +0200 Subject: [PATCH 1/2] deps: pin click version Click 8.3.0 includes breaking changes causing build failures in projects using Hatch. This commit pins the version to a version known to work with the current Hatch release. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 268302614..8955f5742 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = [ "Topic :: Software Development :: Build Tools", ] dependencies = [ - "click>=8.0.6", + "click==8.2.2", "hatchling>=1.24.2", "httpx>=0.22.0", "hyperlink>=21.0.0", From 8b4ed7cea1a04486643c8768ae34ef553eb676d5 Mon Sep 17 00:00:00 2001 From: Valentin Oliver Melberg Loftsson <23453691+valentinoli@users.noreply.github.com> Date: Mon, 22 Sep 2025 09:10:57 +0200 Subject: [PATCH 2/2] deps: change to click==8.2.1 as 8.2.2 was yanked --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 8955f5742..8ca171c0a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ classifiers = [ "Topic :: Software Development :: Build Tools", ] dependencies = [ - "click==8.2.2", + "click==8.2.1", "hatchling>=1.24.2", "httpx>=0.22.0", "hyperlink>=21.0.0",