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

Commit aaad404

Browse files
authored
Depend on jupyterlite-core (#114)
* Depend on `jupyterlite-core` * Update imports to `jupyterlite_core` * Tweak docs environment * Update to jupyterlite-core==0.1.0b19
1 parent 03f192d commit aaad404

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

docs/build-environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ dependencies:
1313
- jupyterlab
1414
- empack >=2.0.9,<3
1515
- pip:
16-
- jupyterlite==0.1.0b18
16+
- jupyterlite-core==0.1.0b19
1717
- jupyterlite-sphinx
1818
- ..

docs/jupyter-lite.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@
22
"jupyter-lite-schema-version": 0,
33
"jupyter-config-data": {
44
"disabledExtensions": [
5-
"@jupyterlite/javascript-kernel-extension",
6-
"@jupyterlite/pyolite-kernel-extension"
5+
"@jupyterlite/javascript-kernel-extension"
76
]
87
}
98
}

jupyterlite_xeus_python/env_build_addon.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,14 @@
1515
from empack.file_packager import pack_environment
1616
from empack.file_patterns import PkgFileFilter, pkg_file_filter_from_yaml
1717

18-
from jupyterlite.constants import (
18+
from jupyterlite_core.constants import (
1919
SHARE_LABEXTENSIONS,
2020
LAB_EXTENSIONS,
2121
JUPYTERLITE_JSON,
2222
UTF8,
2323
FEDERATED_EXTENSIONS,
2424
)
25-
from jupyterlite.addons.federated_extensions import (
25+
from jupyterlite_core.addons.federated_extensions import (
2626
FederatedExtensionAddon,
2727
ENV_EXTENSIONS,
2828
)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
packages=setuptools.find_packages(exclude=["tests"]),
6060
install_requires=[
6161
"traitlets",
62-
"jupyterlite",
62+
"jupyterlite-core>=0.1.0b19",
6363
"requests",
6464
"empack>=2.0.9,<3",
6565
"typer",

tests/test_xeus_python_env.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from tempfile import TemporaryDirectory
55
from pathlib import Path
66

7-
from jupyterlite.app import LiteStatusApp
7+
from jupyterlite_core.app import LiteStatusApp
88

99
from jupyterlite_xeus_python.env_build_addon import XeusPythonEnv
1010

0 commit comments

Comments
 (0)