-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: make pixi-kernel work independently of kernel provisioner
This is specially important when trying to use it in VSCode when `jupyter-client` isn't used to launch a kernel.
- Loading branch information
1 parent
b0e7972
commit 7921dce
Showing
25 changed files
with
2,863 additions
and
1,098 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ dist | |
# ruff | ||
/.ruff_cache | ||
|
||
# MyPy | ||
.mypy_cache | ||
|
||
# IDEs | ||
/.vscode | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
{ | ||
"display_name": "Pixi - C++11", | ||
"argv": [ | ||
"pixi", | ||
"run", | ||
"--manifest-path={manifest-path}", | ||
"python", | ||
"-m", | ||
"pixi_kernel", | ||
"xeus-cling", | ||
"Pixi - C++11", | ||
"xcpp", | ||
"-f", | ||
"{connection_file}", | ||
"-std=c++11" | ||
], | ||
"language": "C++11", | ||
"metadata": { | ||
"pixi-kernel": { | ||
"package-name": "xeus-cling" | ||
}, | ||
"kernel_provisioner": { | ||
"provisioner_name": "pixi-provisioner", | ||
"config": {} | ||
} | ||
} | ||
"display_name": "Pixi - C++11", | ||
"language": "C++11" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
{ | ||
"display_name": "Pixi - C++14", | ||
"argv": [ | ||
"pixi", | ||
"run", | ||
"--manifest-path={manifest-path}", | ||
"python", | ||
"-m", | ||
"pixi_kernel", | ||
"xeus-cling", | ||
"Pixi - C++14", | ||
"xcpp", | ||
"-f", | ||
"{connection_file}", | ||
"-std=c++14" | ||
], | ||
"language": "C++14", | ||
"metadata": { | ||
"pixi-kernel": { | ||
"package-name": "xeus-cling" | ||
}, | ||
"kernel_provisioner": { | ||
"provisioner_name": "pixi-provisioner", | ||
"config": {} | ||
} | ||
} | ||
"display_name": "Pixi - C++14", | ||
"language": "C++14" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
{ | ||
"display_name": "Pixi - C++17", | ||
"argv": [ | ||
"pixi", | ||
"run", | ||
"--manifest-path={manifest-path}", | ||
"python", | ||
"-m", | ||
"pixi_kernel", | ||
"xeus-cling", | ||
"Pixi - C++17", | ||
"xcpp", | ||
"-f", | ||
"{connection_file}", | ||
"-std=c++17" | ||
], | ||
"language": "C++17", | ||
"metadata": { | ||
"pixi-kernel": { | ||
"package-name": "xeus-cling" | ||
}, | ||
"kernel_provisioner": { | ||
"provisioner_name": "pixi-provisioner", | ||
"config": {} | ||
} | ||
} | ||
"display_name": "Pixi - C++17", | ||
"language": "C++17" | ||
} |
Oops, something went wrong.