From ae1bfdc1a4f3247243f6161297853fab35883cc6 Mon Sep 17 00:00:00 2001 From: Jono Templeton Date: Fri, 29 Nov 2024 16:56:07 +1300 Subject: [PATCH 1/2] AUT-2461: pin cryptography package version --- .github/workflows/publish-to-pypi.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index f65ba42..876ee38 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -108,6 +108,10 @@ jobs: inputs: >- ./dist/*.tar.gz ./dist/*.whl + env: + # Pin cryptography to avoid the SCT registration issue + PIP_CONSTRAINT: | + cryptography<43.0.3 - name: Create GitHub Release env: GITHUB_TOKEN: ${{ github.token }} From 475e02fa04620116b4af8607e0713e0f18262e2d Mon Sep 17 00:00:00 2001 From: Jono Templeton Date: Fri, 29 Nov 2024 16:57:27 +1300 Subject: [PATCH 2/2] AUT-2461: pin cryptography package version --- .github/workflows/publish-to-pypi.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/publish-to-pypi.yml b/.github/workflows/publish-to-pypi.yml index 876ee38..1f12759 100644 --- a/.github/workflows/publish-to-pypi.yml +++ b/.github/workflows/publish-to-pypi.yml @@ -111,7 +111,7 @@ jobs: env: # Pin cryptography to avoid the SCT registration issue PIP_CONSTRAINT: | - cryptography<43.0.3 + cryptography==43.0.3 - name: Create GitHub Release env: GITHUB_TOKEN: ${{ github.token }}