Skip to content

Commit d6841ce

Browse files
authored
Bump to pyodide 0.26.4 (#142)
* pyodide 0.26.4 * relock yarn
1 parent 6a27779 commit d6841ce

File tree

6 files changed

+164
-107
lines changed

6 files changed

+164
-107
lines changed

examples/jupyter-lite.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"@jupyterlite/pyodide-kernel-extension:kernel": {
77
"loadPyodideOptions": {
88
"packages": ["matplotlib", "micropip", "numpy", "sqlite3", "ssl"],
9-
"lockFileURL": "https://cdn.jsdelivr.net/pyodide/v0.26.3/full/pyodide-lock.json?from-lite-config=1"
9+
"lockFileURL": "https://cdn.jsdelivr.net/pyodide/v0.26.4/full/pyodide-lock.json?from-lite-config=1"
1010
}
1111
}
1212
}

jupyterlite_pyodide_kernel/constants.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
PYODIDE_URL_ENV_VAR = "JUPYTERLITE_PYODIDE_URL"
3030

3131
#: probably only compatible with this version of pyodide
32-
PYODIDE_VERSION = "0.26.3"
32+
PYODIDE_VERSION = "0.26.4"
3333

3434
#: the only kind of noarch wheel piplite understands
3535
NOARCH_WHL = "py3-none-any.whl"

packages/pyodide-kernel-extension/schema/kernel.v0.schema.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"pyodideUrl": {
99
"description": "The path to the main pyodide.js entry point",
1010
"type": "string",
11-
"default": "https://cdn.jsdelivr.net/pyodide/v0.26.3/full/pyodide.js",
11+
"default": "https://cdn.jsdelivr.net/pyodide/v0.26.4/full/pyodide.js",
1212
"format": "uri"
1313
},
1414
"disablePyPIFallback": {

packages/pyodide-kernel-extension/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ const KERNEL_ICON_URL = `data:image/svg+xml;base64,${btoa(KERNEL_ICON_SVG_STR)}`
2020
/**
2121
* The default CDN fallback for Pyodide
2222
*/
23-
const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.26.3/full/pyodide.js';
23+
const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.26.4/full/pyodide.js';
2424

2525
/**
2626
* The id for the extension, and key in the litePlugins.

packages/pyodide-kernel/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,8 @@
5555
},
5656
"dependencies": {
5757
"@jupyterlab/coreutils": "^6.1.1",
58-
"@jupyterlite/contents": "^0.4.0",
59-
"@jupyterlite/kernel": "^0.4.0",
58+
"@jupyterlite/contents": "^0.4.4",
59+
"@jupyterlite/kernel": "^0.4.4",
6060
"coincident": "^1.2.3",
6161
"comlink": "^4.4.1"
6262
},
@@ -66,7 +66,7 @@
6666
"@types/jest": "^29.5.4",
6767
"esbuild": "^0.19.2",
6868
"jest": "^29.7.0",
69-
"pyodide": "0.26.3",
69+
"pyodide": "0.26.4",
7070
"rimraf": "^5.0.1",
7171
"ts-jest": "^26.3.0",
7272
"typescript": "~5.2.2"

0 commit comments

Comments
 (0)