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

Depend on jupyterlite-core #114

Merged
merged 4 commits into from Mar 15, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/build-environment.yml
Expand Up @@ -13,6 +13,6 @@ dependencies:
- jupyterlab
- empack >=2.0.9,<3
- pip:
- jupyterlite==0.1.0b18
- jupyterlite-core==0.1.0b19
- jupyterlite-sphinx
- ..
3 changes: 1 addition & 2 deletions docs/jupyter-lite.json
Expand Up @@ -2,8 +2,7 @@
"jupyter-lite-schema-version": 0,
"jupyter-config-data": {
"disabledExtensions": [
"@jupyterlite/javascript-kernel-extension",
"@jupyterlite/pyolite-kernel-extension"
"@jupyterlite/javascript-kernel-extension"
]
}
}
4 changes: 2 additions & 2 deletions jupyterlite_xeus_python/env_build_addon.py
Expand Up @@ -15,14 +15,14 @@
from empack.file_packager import pack_environment
from empack.file_patterns import PkgFileFilter, pkg_file_filter_from_yaml

from jupyterlite.constants import (
from jupyterlite_core.constants import (
SHARE_LABEXTENSIONS,
LAB_EXTENSIONS,
JUPYTERLITE_JSON,
UTF8,
FEDERATED_EXTENSIONS,
)
from jupyterlite.addons.federated_extensions import (
from jupyterlite_core.addons.federated_extensions import (
FederatedExtensionAddon,
ENV_EXTENSIONS,
)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -59,7 +59,7 @@
packages=setuptools.find_packages(exclude=["tests"]),
install_requires=[
"traitlets",
"jupyterlite",
"jupyterlite-core>=0.1.0b19",
"requests",
"empack>=2.0.9,<3",
"typer",
Expand Down
2 changes: 1 addition & 1 deletion tests/test_xeus_python_env.py
Expand Up @@ -4,7 +4,7 @@
from tempfile import TemporaryDirectory
from pathlib import Path

from jupyterlite.app import LiteStatusApp
from jupyterlite_core.app import LiteStatusApp

from jupyterlite_xeus_python.env_build_addon import XeusPythonEnv

Expand Down