Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jupyterlite_xeus/add_on.py
Original file line number Diff line number Diff line change
Expand Up @@ -473,7 +473,7 @@ def pack_prefix(self, env_name, prefix):
# copy all the packages to the packages dir
# (this is shared between multiple kernels in the same environment)
for pkg_path in out_path.iterdir():
if pkg_path.name.endswith(".tar.gz"):
if pkg_path.name.endswith(".tar.gz") or pkg_path.name.endswith(".sqshfs"):
yield dict(
name=f"xeus:{env_name}:copy:{pkg_path.name}",
actions=[(self.copy_one, [pkg_path, packages_dir / pkg_path.name])],
Expand Down
2 changes: 1 addition & 1 deletion packages/xeus-core/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"watch:src": "tsc -w --sourceMap"
},
"dependencies": {
"@emscripten-forge/mambajs-core": "^0.15.7",
"@emscripten-forge/mambajs-core": "/workspaces/xeusbuild/mambajs/packages/mambajs-core",
"@jupyterlab/coreutils": "^6.4.2",
"@jupyterlab/services": "^7.4.2",
"@jupyterlite/contents": "^0.6.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/xeus-core/src/worker.base.ts
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export abstract class XeusRemoteKernelBase {
this.xkernel.start();
} catch (e) {
if (typeof e === 'number') {
const msg = this.Module.get_exception_message(e);
const msg = await this.Module.get_exception_message(e);
this.logger.error(msg);
throw new Error(msg);
} else {
Expand Down
2 changes: 1 addition & 1 deletion packages/xeus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"watch:src": "tsc -w --sourceMap"
},
"dependencies": {
"@emscripten-forge/mambajs": "^0.15.7",
"@emscripten-forge/mambajs": "/workspaces/xeusbuild/mambajs/packages/mambajs",
"@jupyterlab/coreutils": "^6.4.2",
"@jupyterlab/services": "^7.4.2",
"@jupyterlite/contents": "^0.6.0",
Expand Down
Loading