@jupyterlite/pyodide-kernel-extension 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/index.js CHANGED
@@ -10,7 +10,7 @@ const KERNEL_ICON_URL = `data:image/svg+xml;base64,${btoa(KERNEL_ICON_SVG_STR)}`
10
10
  /**
11
11
  * The default CDN fallback for Pyodide
12
12
  */
13
- const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.22.0/full/pyodide.js';
13
+ const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.23.0/full/pyodide.js';
14
14
  /**
15
15
  * The id for the extension, and key in the litePlugins.
16
16
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jupyterlite/pyodide-kernel-extension",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "JupyterLite - Pyodide Kernel Extension",
5
5
  "homepage": "https://github.com/jupyterlite/pyodide-kernel",
6
6
  "bugs": {
@@ -50,7 +50,7 @@
50
50
  "@jupyterlab/coreutils": "^5.5.2",
51
51
  "@jupyterlite/contents": "^0.1.0-beta.18",
52
52
  "@jupyterlite/kernel": "^0.1.0-beta.18",
53
- "@jupyterlite/pyodide-kernel": "^0.0.5",
53
+ "@jupyterlite/pyodide-kernel": "^0.0.6",
54
54
  "@jupyterlite/server": "^0.1.0-beta.18"
55
55
  },
56
56
  "devDependencies": {
@@ -8,7 +8,7 @@
8
8
  "pyodideUrl": {
9
9
  "description": "The path to the main pyodide.js entry point",
10
10
  "type": "string",
11
- "default": "https://cdn.jsdelivr.net/pyodide/v0.22.1/full/pyodide.js",
11
+ "default": "https://cdn.jsdelivr.net/pyodide/v0.23.0/full/pyodide.js",
12
12
  "format": "uri"
13
13
  },
14
14
  "disablePyPIFallback": {