Skip to content

Commit

Permalink
chore: bump pyodide 0.26.2 (marimo-team#1899)
Browse files Browse the repository at this point in the history
  • Loading branch information
mscolnick authored Jul 27, 2024
1 parent a91333c commit 4838ac3
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
"partysocket": "1.0.1",
"path-to-regexp": "^7.0.0",
"plotly.js": "^2.33.0",
"pyodide": "^0.26.1",
"pyodide": "^0.26.2",
"react-arborist": "^3.4.0",
"react-aria-components": "^1.2.1",
"react-codemirror-merge": "^4.22.2",
Expand Down
8 changes: 4 additions & 4 deletions frontend/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions frontend/src/core/wasm/worker/getPyodideVersion.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ const ALLOW_DEV_VERSIONS = false;
export function getPyodideVersion(marimoVersion: string) {
return marimoVersion.includes("dev") && ALLOW_DEV_VERSIONS
? "dev"
: "v0.26.0";
: "v0.26.2";
}

export async function importPyodide(marimoVersion: string) {
Expand All @@ -13,5 +13,5 @@ export async function importPyodide(marimoVersion: string) {
? // @ts-expect-error typescript does not like
await import(`https://cdn.jsdelivr.net/pyodide/dev/full/pyodide.js`)
: // @ts-expect-error typescript does not like
await import(`https://cdn.jsdelivr.net/pyodide/v0.26.0/full/pyodide.js`);
await import(`https://cdn.jsdelivr.net/pyodide/v0.26.2/full/pyodide.js`);
}

0 comments on commit 4838ac3

Please sign in to comment.