@jupyterlite/pyodide-kernel-extension 0.7.0-alpha.5 → 0.7.0-rc.0

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
@@ -2,15 +2,15 @@
2
2
  // Distributed under the terms of the Modified BSD License.
3
3
  import { PageConfig, URLExt } from '@jupyterlab/coreutils';
4
4
  import { ILoggerRegistry } from '@jupyterlab/logconsole';
5
- import { IServiceWorkerManager } from '@jupyterlite/server';
6
- import { IKernelSpecs } from '@jupyterlite/kernel';
5
+ import { IServiceWorkerManager } from '@jupyterlite/apputils';
6
+ import { IKernelSpecs } from '@jupyterlite/services';
7
7
  import KERNEL_ICON_SVG_STR from '../style/img/pyodide.svg';
8
8
  export * as KERNEL_SETTINGS_SCHEMA from '../schema/kernel.v0.schema.json';
9
9
  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.28.3/full/pyodide.js';
13
+ const PYODIDE_CDN_URL = 'https://cdn.jsdelivr.net/pyodide/v0.29.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.7.0-alpha.5",
3
+ "version": "0.7.0-rc.0",
4
4
  "description": "JupyterLite - Pyodide Kernel Extension",
5
5
  "homepage": "https://github.com/jupyterlite/pyodide-kernel",
6
6
  "bugs": {
@@ -47,16 +47,15 @@
47
47
  "watch:labextension": "jupyter labextension watch ."
48
48
  },
49
49
  "dependencies": {
50
- "@jupyterlab/application": "^4.5.0-beta.0",
51
- "@jupyterlab/coreutils": "^6.5.0-beta.0",
52
- "@jupyterlab/logconsole": "^4.5.0-beta.0",
53
- "@jupyterlite/contents": "^0.7.0-alpha.7",
54
- "@jupyterlite/kernel": "^0.7.0-alpha.7",
55
- "@jupyterlite/pyodide-kernel": "^0.7.0-alpha.5",
56
- "@jupyterlite/server": "^0.7.0-alpha.7"
50
+ "@jupyterlab/application": "^4.5.0",
51
+ "@jupyterlab/coreutils": "^6.5.0",
52
+ "@jupyterlab/logconsole": "^4.5.0",
53
+ "@jupyterlite/apputils": "^0.7.0-rc.0",
54
+ "@jupyterlite/pyodide-kernel": "^0.7.0-rc.0",
55
+ "@jupyterlite/services": "^0.7.0-rc.0"
57
56
  },
58
57
  "devDependencies": {
59
- "@jupyterlab/builder": "^4.5.0-beta.0",
58
+ "@jupyterlab/builder": "^4.5.0",
60
59
  "rimraf": "^6.0.1",
61
60
  "typescript": "~5.2.2"
62
61
  },
@@ -68,15 +67,7 @@
68
67
  "outputDir": "../../jupyterlite_pyodide_kernel/labextension",
69
68
  "webpackConfig": "webpack.config.js",
70
69
  "sharedPackages": {
71
- "@jupyterlite/kernel": {
72
- "bundled": false,
73
- "singleton": true
74
- },
75
- "@jupyterlite/server": {
76
- "bundled": false,
77
- "singleton": true
78
- },
79
- "@jupyterlite/contents": {
70
+ "@jupyterlite/services": {
80
71
  "bundled": false,
81
72
  "singleton": true
82
73
  }
@@ -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.28.3/full/pyodide.js",
11
+ "default": "https://cdn.jsdelivr.net/pyodide/v0.29.0/full/pyodide.js",
12
12
  "format": "uri"
13
13
  },
14
14
  "disablePyPIFallback": {