Skip to content

Commit

Permalink
Update Pyodide to 0.21.0
Browse files Browse the repository at this point in the history
  • Loading branch information
messense committed Aug 11, 2022
1 parent f8ca360 commit 180472b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ jobs:
name: Test Emscripten
runs-on: ubuntu-latest
env:
PYODIDE_VERSION: '0.21.0-alpha.3'
PYODIDE_VERSION: '0.21.0'
PYTHON_VERSION: '3.10.2'
NODE_VERSION: 18
steps:
Expand Down
2 changes: 1 addition & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
import nox


PYODIDE_VERSION = os.getenv("PYODIDE_VERSION", "0.21.0-alpha.3")
PYODIDE_VERSION = os.getenv("PYODIDE_VERSION", "0.21.0")
GITHUB_ACTIONS = os.getenv("GITHUB_ACTIONS")
GITHUB_ENV = os.getenv("GITHUB_ENV")

Expand Down
2 changes: 1 addition & 1 deletion tests/emscripten_runner.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const { loadPyodide } = require("pyodide");
async function findWheel(distDir) {
const dir = await opendir(distDir);
for await (const dirent of dir) {
if (dirent.name.endsWith("whl")) {
if (dirent.name.includes("emscripten") && dirent.name.endsWith("whl")) {
return dirent.name;
}
}
Expand Down

0 comments on commit 180472b

Please sign in to comment.