From 09007391e573fd4c65f41ceb1b7dee11cdd9a317 Mon Sep 17 00:00:00 2001 From: Charles Moore <122481442+moorec-aws@users.noreply.github.com> Date: Mon, 22 Sep 2025 12:37:09 -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 4b50c66..ceac0e6 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 e8014f3..128d74e 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