From 2ca7ef413b50ae451f8283a8141696e935e5aa10 Mon Sep 17 00:00:00 2001 From: Hood Chatham Date: Thu, 16 Jan 2025 11:35:07 +0100 Subject: [PATCH] Cap boto3 in release-python-runtime job --- .github/workflows/release-python-runtime.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release-python-runtime.yml b/.github/workflows/release-python-runtime.yml index 9d75513c945..d70a577adc5 100644 --- a/.github/workflows/release-python-runtime.yml +++ b/.github/workflows/release-python-runtime.yml @@ -46,5 +46,7 @@ jobs: R2_ACCESS_KEY_ID: ${{ secrets.PYODIDE_CAPNP_R2_ACCESS_KEY_ID }} R2_SECRET_ACCESS_KEY: ${{ secrets.PYODIDE_CAPNP_R2_SECRET_ACCESS_KEY }} run: | - pip install boto3 + # boto3 v1.36.0 fails with: + # NotImplemented error occurred in CreateMultipartUpload operation: Header 'x-amz-checksum-algorithm' with value 'CRC32' not implemented + pip install 'boto3<1.36.0' python3 src/pyodide/upload_bundle.py pyodide.capnp.bin pyodide_${{ inputs.pyodide }}_${{ inputs.pyodideRevision }}_${{ inputs.backport }}.capnp.bin