Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ concurrency:
env:
# Min and max limits of jupyterlite-core versions that this should work on.
# Changes here should be synchronised with pyproject.toml dependencies section.
MIN_LITE_VERSION: jupyterlite-core==0.6.0
MIN_LITE_VERSION: jupyterlite-core==0.7.0rc0
MAX_LITE_VERSION: --pre jupyterlite-core<0.8.0

LAB_VERSION: jupyterlab>=4.0.0,<5
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.9'
python-version: '3.10'
architecture: 'x64'

- uses: actions/download-artifact@v4
Expand Down
21 changes: 11 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,20 +59,21 @@
"watch:labextension": "jupyter labextension watch ."
},
"dependencies": {
"@jupyterlab/apputils": "^4.5.3",
"@jupyterlab/coreutils": "^6.4.3",
"@jupyterlab/services": "^7.4.3",
"@jupyterlab/settingregistry": "^4.4.3",
"@jupyterlab/apputils": "^4.6.0",
"@jupyterlab/coreutils": "^6.5.0",
"@jupyterlab/pluginmanager": "^4.5.0",
"@jupyterlab/services": "^7.5.0",
"@jupyterlab/settingregistry": "^4.5.0",
"@jupyterlite/apputils": "^0.7.0-rc.0",
"@jupyterlite/cockle": "^1.2.0",
"@jupyterlite/contents": "^0.6.0",
"@jupyterlite/server": "^0.6.0",
"@jupyterlite/services": "^0.7.0-rc.0",
"@lumino/coreutils": "^2.2.1",
"@lumino/signaling": "^2.1.4",
"mock-socket": "^9.3.1"
},
"devDependencies": {
"@jupyterlab/builder": "^4.4.3",
"@jupyterlab/testutils": "^4.4.3",
"@jupyterlab/builder": "^4.5.0",
"@jupyterlab/testutils": "^4.5.0",
"@types/jest": "^29.2.0",
"@types/json-schema": "^7.0.11",
"@types/react": "^18.0.26",
Expand Down Expand Up @@ -123,11 +124,11 @@
"bundled": false,
"singleton": true
},
"@jupyterlite/contents": {
"@jupyterlite/apputils": {
"bundled": false,
"singleton": true
},
"@jupyterlite/server": {
"@jupyterlite/services": {
"bundled": false,
"singleton": true
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ classifiers = [
]
dependencies = [
# Changes here should be synchronised with .github/workflows/build.yml
"jupyterlite-core>=0.6,<0.8.0"
"jupyterlite-core>=0.7.0rc0,<0.8.0"
]
dynamic = ["version", "description", "authors", "urls", "keywords"]

Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
Terminal,
TerminalManager
} from '@jupyterlab/services';
import { IServiceWorkerManager } from '@jupyterlite/server';
import { IServiceWorkerManager } from '@jupyterlite/apputils';
import { ISettingRegistry } from '@jupyterlab/settingregistry';

import { WebSocket } from 'mock-socket';
Expand Down
2 changes: 1 addition & 1 deletion src/worker.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { expose } from 'comlink';

import { BaseShellWorker, IDriveFSOptions } from '@jupyterlite/cockle';
import { DriveFS } from '@jupyterlite/contents';
import { DriveFS } from '@jupyterlite/services';

/**
* Shell web worker that uses DriveFS via service worker.
Expand Down
Loading
Loading