@jupyterlite/pyodide-kernel 0.7.0-beta.0 → 0.7.0-rc.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/coincident.worker.d.ts +3 -2
- package/lib/coincident.worker.js +8 -17
- package/lib/coincident.worker.js.map +4 -4
- package/lib/comlink.worker.d.ts +1 -1
- package/lib/comlink.worker.js +12 -13
- package/lib/comlink.worker.js.map +4 -4
- package/lib/kernel.d.ts +5 -4
- package/lib/kernel.js +9 -2
- package/lib/tokens.d.ts +1 -2
- package/lib/worker.d.ts +2 -2
- package/lib/worker.js +2 -1
- package/package.json +6 -7
- package/pypi/all.json +33 -33
- package/pypi/ipykernel-6.9.2-py3-none-any.whl +0 -0
- package/pypi/{piplite-0.7.0b0-py3-none-any.whl → piplite-0.7.0rc1-py3-none-any.whl} +0 -0
- package/pypi/{pyodide_kernel-0.7.0b0-py3-none-any.whl → pyodide_kernel-0.7.0rc1-py3-none-any.whl} +0 -0
- package/pypi/widgetsnbextension-3.6.999-py3-none-any.whl +0 -0
- package/pypi/widgetsnbextension-4.0.999-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.7.
|
|
4
|
-
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.7.
|
|
3
|
+
export * as pipliteWheelUrl from '../pypi/piplite-0.7.0rc1-py3-none-any.whl';
|
|
4
|
+
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.7.0rc1-py3-none-any.whl';
|
|
5
5
|
export * as widgetsnbextensionWheelUrl from '../pypi/widgetsnbextension-3.6.999-py3-none-any.whl';
|
|
6
6
|
export * as widgetsnbextensionWheelUrl1 from '../pypi/widgetsnbextension-4.0.999-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.7.
|
|
5
|
-
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.7.
|
|
4
|
+
export * as pipliteWheelUrl from '../pypi/piplite-0.7.0rc1-py3-none-any.whl';
|
|
5
|
+
export * as pyodide_kernelWheelUrl from '../pypi/pyodide_kernel-0.7.0rc1-py3-none-any.whl';
|
|
6
6
|
export * as widgetsnbextensionWheelUrl from '../pypi/widgetsnbextension-3.6.999-py3-none-any.whl';
|
|
7
7
|
export * as widgetsnbextensionWheelUrl1 from '../pypi/widgetsnbextension-4.0.999-py3-none-any.whl';
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import type { TDriveMethod, TDriveRequest, TDriveResponse } from '@jupyterlite/services/lib/contents/drivefs';
|
|
2
|
+
import { ContentsAPI } from '@jupyterlite/services/lib/contents/drivefs';
|
|
3
|
+
import type { IPyodideWorkerKernel } from './tokens';
|
|
3
4
|
import { PyodideRemoteKernel } from './worker';
|
|
4
5
|
/**
|
|
5
6
|
* An Emscripten-compatible synchronous Contents API using shared array buffers.
|