Skip to content
This repository was archived by the owner on Feb 14, 2024. It is now read-only.

Commit 9763d58

Browse files
committed
Release 0.1.0
1 parent f078741 commit 9763d58

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

jupyterlite_xeus_python/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
with (HERE / "labextension" / "package.json").open() as fid:
1010
data = json.load(fid)
1111

12+
1213
def _jupyter_labextension_paths():
1314
return [{
1415
"src": "labextension",

jupyterlite_xeus_python/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
def _fetchVersion():
77
HERE = Path(__file__).parent.resolve()
88

9-
for settings in HERE.rglob("package.json"):
9+
for settings in HERE.rglob("package.json"):
1010
try:
1111
with settings.open() as f:
1212
version = json.load(f)["version"]

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@jupyterlite/xeus-python-kernel",
3-
"version": "0.2.0",
3+
"version": "0.1.0",
44
"description": "A Python kernel for JupyterLite, powered by Xeus",
55
"keywords": [
66
"jupyter",

0 commit comments

Comments
 (0)