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