From 4c2ddddd9ae76210ebecf7728575b64c02811e71 Mon Sep 17 00:00:00 2001 From: Charles Moore <122481442+moorec-aws@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:37:11 -0500 Subject: [PATCH] chore: pin the version of click that hatch uses to <8.3 due to Sentinel bug Signed-off-by: Charles Moore <122481442+moorec-aws@users.noreply.github.com> --- .github/workflows/release_publish.yml | 2 +- pipeline/build.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release_publish.yml b/.github/workflows/release_publish.yml index d602d339..ee1748f6 100644 --- a/.github/workflows/release_publish.yml +++ b/.github/workflows/release_publish.yml @@ -83,7 +83,7 @@ jobs: python-version: '3.9' - name: Install dependencies run: | - pip install --upgrade hatch + pip install --upgrade hatch "click<8.3" - name: Build run: hatch -v build # # See https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/configuring-openid-connect-in-pypi diff --git a/pipeline/build.sh b/pipeline/build.sh index e8014f30..128d74e5 100755 --- a/pipeline/build.sh +++ b/pipeline/build.sh @@ -3,7 +3,7 @@ set -e pip install --upgrade pip -pip install --upgrade hatch +pip install --upgrade hatch "click<8.3" pip install --upgrade twine hatch run codebuild:lint hatch run codebuild:test