@jupyterlite/pyodide-kernel 0.3.0-alpha.0 → 0.3.1
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/_pypi.d.ts +2 -2
- package/lib/_pypi.js +2 -2
- package/lib/kernel.d.ts +8 -0
- package/lib/kernel.js +1 -0
- package/lib/tokens.d.ts +8 -0
- package/lib/worker.js +6 -15
- package/lib/worker.js.map +3 -3
- package/package.json +5 -5
- package/pypi/all.json +36 -36
- package/pypi/ipykernel-6.9.2-py3-none-any.whl +0 -0
- package/pypi/piplite-0.3.1-py3-none-any.whl +0 -0
- package/pypi/{pyodide_kernel-0.3.0a0-py3-none-any.whl → pyodide_kernel-0.3.1-py3-none-any.whl} +0 -0
- package/pypi/widgetsnbextension-3.6.6-py3-none-any.whl +0 -0
- package/pypi/widgetsnbextension-4.0.10-py3-none-any.whl +0 -0
- package/pypi/piplite-0.3.0a0-py3-none-any.whl +0 -0
package/lib/_pypi.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export * as allJSONUrl from '../pypi/all.json';
|
|
2
2
|
export * as ipykernelWheelUrl from '../pypi/ipykernel-6.9.2-py3-none-any.whl';
|
|
3
|
-
export * as pipliteWheelUrl from '../pypi/piplite-0.3.
|
|
4
|
-
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.3.
|
|
3
|
+
export * as pipliteWheelUrl from '../pypi/piplite-0.3.1-py3-none-any.whl';
|
|
4
|
+
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.3.1-py3-none-any.whl';
|
|
5
5
|
export * as widgetsnbextensionWheelUrl from '../pypi/widgetsnbextension-3.6.6-py3-none-any.whl';
|
|
6
6
|
export * as widgetsnbextensionWheelUrl1 from '../pypi/widgetsnbextension-4.0.10-py3-none-any.whl';
|
package/lib/_pypi.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
// this file is autogenerated from the wheels described in ../package.json
|
|
2
2
|
export * as allJSONUrl from '../pypi/all.json';
|
|
3
3
|
export * as ipykernelWheelUrl from '../pypi/ipykernel-6.9.2-py3-none-any.whl';
|
|
4
|
-
export * as pipliteWheelUrl from '../pypi/piplite-0.3.
|
|
5
|
-
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.3.
|
|
4
|
+
export * as pipliteWheelUrl from '../pypi/piplite-0.3.1-py3-none-any.whl';
|
|
5
|
+
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.3.1-py3-none-any.whl';
|
|
6
6
|
export * as widgetsnbextensionWheelUrl from '../pypi/widgetsnbextension-3.6.6-py3-none-any.whl';
|
|
7
7
|
export * as widgetsnbextensionWheelUrl1 from '../pypi/widgetsnbextension-4.0.10-py3-none-any.whl';
|
package/lib/kernel.d.ts
CHANGED
|
@@ -132,5 +132,13 @@ export declare namespace PyodideKernel {
|
|
|
132
132
|
* Whether or not to mount the Emscripten drive
|
|
133
133
|
*/
|
|
134
134
|
mountDrive: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* additional options to provide to `loadPyodide`
|
|
137
|
+
* @see https://pyodide.org/en/stable/usage/api/js-api.html#globalThis.loadPyodide
|
|
138
|
+
*/
|
|
139
|
+
loadPyodideOptions: Record<string, any> & {
|
|
140
|
+
lockFileURL: string;
|
|
141
|
+
packages: string[];
|
|
142
|
+
};
|
|
135
143
|
}
|
|
136
144
|
}
|
package/lib/kernel.js
CHANGED
package/lib/tokens.d.ts
CHANGED
|
@@ -56,5 +56,13 @@ export declare namespace IPyodideWorkerKernel {
|
|
|
56
56
|
* Whether or not to mount the Emscripten drive
|
|
57
57
|
*/
|
|
58
58
|
mountDrive: boolean;
|
|
59
|
+
/**
|
|
60
|
+
* additional options to provide to `loadPyodide`
|
|
61
|
+
* @see https://pyodide.org/en/stable/usage/api/js-api.html#globalThis.loadPyodide
|
|
62
|
+
*/
|
|
63
|
+
loadPyodideOptions: Record<string, any> & {
|
|
64
|
+
lockFileURL: string;
|
|
65
|
+
packages: string[];
|
|
66
|
+
};
|
|
59
67
|
}
|
|
60
68
|
}
|