diff --git a/.github/workflows/build_wheel.yml b/.github/workflows/build_wheel.yml index a4a548ca8b..ebb0955210 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