From 073710164d82855b99e7c59ffa36217123f0680c Mon Sep 17 00:00:00 2001 From: Cristian Le Date: Mon, 22 Sep 2025 10:28:51 +0200 Subject: [PATCH] Workaround hatch-click bug https://github.com/pypa/hatch/issues/2050 Signed-off-by: Cristian Le --- .github/actions/setup-docs-env/action.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-docs-env/action.yml b/.github/actions/setup-docs-env/action.yml index 963f4ef6ef..c78e97b3d3 100644 --- a/.github/actions/setup-docs-env/action.yml +++ b/.github/actions/setup-docs-env/action.yml @@ -24,5 +24,9 @@ runs: hatch-envs-${{ runner.os }}- - name: Install hatch - run: pip install hatch + # TODO: relax click restriction after either + # https://github.com/pallets/click/pull/3068 + # https://github.com/pypa/hatch/pull/2053 + # https://github.com/pypa/hatch/pull/2051 + run: pip install hatch "click<8.3.0" shell: bash