From 28ba47b3b7c666f8c63c6fc77fc889e34e69f260 Mon Sep 17 00:00:00 2001 From: Luiz Irber Date: Wed, 5 Apr 2023 09:20:20 -0700 Subject: [PATCH] bump to pyodide 0.23 --- .github/workflows/build_wheel.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index a4a548ca8b..bce8c9edf6 100644 --- a/.github/workflows/build_wheel.yml +++ b/.github/workflows/build_wheel.yml @@ -57,13 +57,15 @@ jobs: build_wasm: runs-on: ubuntu-20.04 + env: + PYODIDE_VERSION: "0.23.0" steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v4 with: - python-version: 3.10.2 + python-version: "3.11.2" - run: | - pip install 'pyodide-build>=0.22.0' + pip install pyodide-build==${PYODIDE_VERSION} pyodide config get emscripten_version # trigger setup echo EMSCRIPTEN_VERSION=$(pyodide config get emscripten_version) >> $GITHUB_ENV - uses: mymindstorm/setup-emsdk@v12