Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ Open it searching for "Show diagnostics panel" in JupyterLab commands palette or

Either:

- JupyterLab >=2.1.0,<3.0.0a0
- JupyterLab >=2.2.0,<3.0.0a0

And:

Expand All @@ -99,9 +99,9 @@ Use of a python `virtualenv` or a conda env is also recommended.
1. install JupyterLab

```bash
conda install -c conda-forge 'jupyterlab>=2.1,<3.0.0a0'
conda install -c conda-forge 'jupyterlab>=2.2,<3.0.0a0'
# or
pip install 'jupyterlab>=2.1,<3.0.0a0'
pip install 'jupyterlab>=2.2,<3.0.0a0'
```

1. install the server extension:
Expand Down
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ channels:
dependencies:
# runtime dependencies
- python >=3.7,<3.8.0a0
- jupyterlab >=2.1.0,<3.0.0a0
- jupyterlab >=2.2.0,<3.0.0a0
- notebook >=4.3.1
# build dependencies
- nodejs >=10,<14
Expand Down
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
"bash-language-server": "^1.6.1",
"dictionary-en": "^3.0.0",
"dockerfile-language-server-nodejs": "^0.0.22",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-react": "^7.19.0",
"eslint": "^6.8.0",
"husky": "^3.0.9",
"javascript-typescript-langserver": "^2.11.3",
"lerna": "^3.13.2",
Expand All @@ -25,7 +25,6 @@
},
"husky": {
"hooks": {
"pre-commit": "precise-commits"
}
},
"prettier": {
Expand Down
44 changes: 22 additions & 22 deletions packages/jupyterlab-go-to-definition/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,37 +30,37 @@
"test": "jlpm jest --coverage --coverageReporters=cobertura --coverageReporters=html --coverageReporters=text-summary"
},
"peerDependencies": {
"@jupyterlab/application": "~2.0.0",
"@jupyterlab/apputils": "~2.0.0",
"@jupyterlab/codeeditor": "~2.0.0",
"@jupyterlab/codemirror": "~2.0.0",
"@jupyterlab/coreutils": "~4.0.0",
"@jupyterlab/docmanager": "~2.0.0",
"@jupyterlab/docregistry": "~2.0.0",
"@jupyterlab/fileeditor": "~2.0.0",
"@jupyterlab/notebook": "~2.0.0",
"@jupyterlab/observables": "~3.0.0",
"@jupyterlab/services": "~5.0.0",
"@jupyterlab/application": "~2.2.0",
"@jupyterlab/apputils": "~2.2.0",
"@jupyterlab/codeeditor": "~2.2.0",
"@jupyterlab/codemirror": "~2.2.0",
"@jupyterlab/coreutils": "~4.2.0",
"@jupyterlab/docmanager": "~2.2.0",
"@jupyterlab/docregistry": "~2.2.0",
"@jupyterlab/fileeditor": "~2.2.0",
"@jupyterlab/notebook": "~2.2.0",
"@jupyterlab/observables": "~3.2.0",
"@jupyterlab/services": "~5.2.0",
"@lumino/algorithm": "*",
"codemirror": "*",
"react": "*"
},
"devDependencies": {
"@jupyterlab/application": "~2.0.0",
"@jupyterlab/apputils": "~2.0.0",
"@jupyterlab/codeeditor": "~2.0.0",
"@jupyterlab/codemirror": "~2.0.0",
"@jupyterlab/application": "~2.2.0",
"@jupyterlab/apputils": "~2.2.0",
"@jupyterlab/codeeditor": "~2.2.0",
"@jupyterlab/codemirror": "~2.2.0",
"@jupyterlab/coreutils": "~4.0.0",
"@jupyterlab/docmanager": "~2.0.0",
"@jupyterlab/docregistry": "~2.0.0",
"@jupyterlab/fileeditor": "~2.0.0",
"@jupyterlab/notebook": "~2.0.0",
"@jupyterlab/observables": "~3.0.0",
"@jupyterlab/services": "~5.0.0",
"@jupyterlab/docmanager": "~2.2.0",
"@jupyterlab/docregistry": "~2.2.0",
"@jupyterlab/fileeditor": "~2.2.0",
"@jupyterlab/notebook": "~2.2.0",
"@jupyterlab/observables": "~3.2.0",
"@jupyterlab/services": "~5.2.0",
"@lumino/algorithm": "*",
"codemirror": "*",
"react": "*",
"@jupyterlab/testutils": "~2.0.0",
"@jupyterlab/testutils": "~2.2.0",
"@types/codemirror": "^0.0.74",
"@types/chai": "^4.1.7",
"@types/jest": "^23.3.11",
Expand Down
2 changes: 1 addition & 1 deletion packages/jupyterlab-go-to-definition/src/jumpers/jumper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const system_keys = [
'F2',
'F3',
'F4',
' F5',
'F5',
'F6',
'F7',
'F8',
Expand Down
62 changes: 31 additions & 31 deletions packages/jupyterlab-lsp/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -42,22 +42,22 @@
},
"devDependencies": {
"@babel/preset-env": "^7.4.3",
"@jupyterlab/application": "~2.1.0",
"@jupyterlab/apputils": "~2.0.0",
"@jupyterlab/cells": "~2.0.0",
"@jupyterlab/codeeditor": "~2.0.0",
"@jupyterlab/codemirror": "~2.0.0",
"@jupyterlab/completer": "~2.0.0",
"@jupyterlab/coreutils": "~4.0.0",
"@jupyterlab/docmanager": "~2.0.0",
"@jupyterlab/docregistry": "~2.0.0",
"@jupyterlab/fileeditor": "~2.0.0",
"@jupyterlab/notebook": "~2.0.0",
"@jupyterlab/rendermime": "~2.0.0",
"@jupyterlab/services": "~5.0.0",
"@jupyterlab/statusbar": "~2.0.0",
"@jupyterlab/testutils": "~2.0.0",
"@jupyterlab/tooltip": "~2.0.0",
"@jupyterlab/application": "~2.2.0",
"@jupyterlab/apputils": "~2.2.0",
"@jupyterlab/cells": "~2.2.0",
"@jupyterlab/codeeditor": "~2.2.0",
"@jupyterlab/codemirror": "~2.2.0",
"@jupyterlab/completer": "~2.2.0",
"@jupyterlab/coreutils": "~4.2.0",
"@jupyterlab/docmanager": "~2.2.0",
"@jupyterlab/docregistry": "~2.2.0",
"@jupyterlab/fileeditor": "~2.2.0",
"@jupyterlab/notebook": "~2.2.0",
"@jupyterlab/rendermime": "~2.2.0",
"@jupyterlab/services": "~5.2.0",
"@jupyterlab/statusbar": "~2.2.0",
"@jupyterlab/testutils": "~2.2.0",
"@jupyterlab/tooltip": "~2.2.0",
"@lumino/algorithm": "*",
"@lumino/widgets": "*",
"@types/chai": "^4.1.7",
Expand All @@ -77,21 +77,21 @@
"typescript": "~3.9.5"
},
"peerDependencies": {
"@jupyterlab/application": "~2.1.0",
"@jupyterlab/apputils": "~2.0.0",
"@jupyterlab/cells": "~2.0.0",
"@jupyterlab/codeeditor": "~2.0.0",
"@jupyterlab/codemirror": "~2.0.0",
"@jupyterlab/completer": "~2.0.0",
"@jupyterlab/coreutils": "~4.0.0",
"@jupyterlab/docmanager": "~2.0.0",
"@jupyterlab/docregistry": "~2.0.0",
"@jupyterlab/fileeditor": "~2.0.0",
"@jupyterlab/notebook": "~2.0.0",
"@jupyterlab/rendermime": "~2.0.0",
"@jupyterlab/services": "~5.0.0",
"@jupyterlab/statusbar": "~2.0.0",
"@jupyterlab/tooltip": "~2.0.0",
"@jupyterlab/application": "~2.2.0",
"@jupyterlab/apputils": "~2.2.0",
"@jupyterlab/cells": "~2.2.0",
"@jupyterlab/codeeditor": "~2.2.0",
"@jupyterlab/codemirror": "~2.2.0",
"@jupyterlab/completer": "~2.2.0",
"@jupyterlab/coreutils": "~4.2.0",
"@jupyterlab/docmanager": "~2.2.0",
"@jupyterlab/docregistry": "~2.2.0",
"@jupyterlab/fileeditor": "~2.2.0",
"@jupyterlab/notebook": "~2.2.0",
"@jupyterlab/rendermime": "~2.2.0",
"@jupyterlab/services": "~5.2.0",
"@jupyterlab/statusbar": "~2.2.0",
"@jupyterlab/tooltip": "~2.2.0",
"@lumino/algorithm": "*",
"@lumino/widgets": "*",
"codemirror": "*",
Expand Down
Loading