Skip to content

Commit 00216c4

Browse files
committed
Attempt to support JupyterLab 2.2
1 parent 8c9ca6f commit 00216c4

File tree

9 files changed

+3874
-2537
lines changed

9 files changed

+3874
-2537
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Open it searching for "Show diagnostics panel" in JupyterLab commands palette or
7676

7777
Either:
7878

79-
- JupyterLab >=2.1.0,<3.0.0a0
79+
- JupyterLab >=2.2.0,<3.0.0a0
8080

8181
And:
8282

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

101101
```bash
102-
conda install -c conda-forge 'jupyterlab>=2.1,<3.0.0a0'
102+
conda install -c conda-forge 'jupyterlab>=2.2,<3.0.0a0'
103103
# or
104-
pip install 'jupyterlab>=2.1,<3.0.0a0'
104+
pip install 'jupyterlab>=2.2,<3.0.0a0'
105105
```
106106

107107
1. install the server extension:

binder/environment.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ channels:
77
dependencies:
88
# runtime dependencies
99
- python >=3.7,<3.8.0a0
10-
- jupyterlab >=2.1.0,<3.0.0a0
10+
- jupyterlab >=2.2.0,<3.0.0a0
1111
- notebook >=4.3.1
1212
# build dependencies
1313
- nodejs >=10,<14

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
"bash-language-server": "^1.6.1",
77
"dictionary-en": "^3.0.0",
88
"dockerfile-language-server-nodejs": "^0.0.22",
9+
"eslint": "^6.8.0",
910
"eslint-config-prettier": "^6.7.0",
1011
"eslint-plugin-jest": "^23.8.2",
1112
"eslint-plugin-prettier": "^3.1.1",
1213
"eslint-plugin-react": "^7.19.0",
13-
"eslint": "^6.8.0",
1414
"husky": "^3.0.9",
1515
"javascript-typescript-langserver": "^2.11.3",
1616
"lerna": "^3.13.2",
@@ -25,7 +25,6 @@
2525
},
2626
"husky": {
2727
"hooks": {
28-
"pre-commit": "precise-commits"
2928
}
3029
},
3130
"prettier": {

packages/jupyterlab-go-to-definition/package.json

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -30,37 +30,37 @@
3030
"test": "jlpm jest --coverage --coverageReporters=cobertura --coverageReporters=html --coverageReporters=text-summary"
3131
},
3232
"peerDependencies": {
33-
"@jupyterlab/application": "~2.0.0",
34-
"@jupyterlab/apputils": "~2.0.0",
35-
"@jupyterlab/codeeditor": "~2.0.0",
36-
"@jupyterlab/codemirror": "~2.0.0",
37-
"@jupyterlab/coreutils": "~4.0.0",
38-
"@jupyterlab/docmanager": "~2.0.0",
39-
"@jupyterlab/docregistry": "~2.0.0",
40-
"@jupyterlab/fileeditor": "~2.0.0",
41-
"@jupyterlab/notebook": "~2.0.0",
42-
"@jupyterlab/observables": "~3.0.0",
43-
"@jupyterlab/services": "~5.0.0",
33+
"@jupyterlab/application": "~2.2.0",
34+
"@jupyterlab/apputils": "~2.2.0",
35+
"@jupyterlab/codeeditor": "~2.2.0",
36+
"@jupyterlab/codemirror": "~2.2.0",
37+
"@jupyterlab/coreutils": "~4.2.0",
38+
"@jupyterlab/docmanager": "~2.2.0",
39+
"@jupyterlab/docregistry": "~2.2.0",
40+
"@jupyterlab/fileeditor": "~2.2.0",
41+
"@jupyterlab/notebook": "~2.2.0",
42+
"@jupyterlab/observables": "~3.2.0",
43+
"@jupyterlab/services": "~5.2.0",
4444
"@lumino/algorithm": "*",
4545
"codemirror": "*",
4646
"react": "*"
4747
},
4848
"devDependencies": {
49-
"@jupyterlab/application": "~2.0.0",
50-
"@jupyterlab/apputils": "~2.0.0",
51-
"@jupyterlab/codeeditor": "~2.0.0",
52-
"@jupyterlab/codemirror": "~2.0.0",
49+
"@jupyterlab/application": "~2.2.0",
50+
"@jupyterlab/apputils": "~2.2.0",
51+
"@jupyterlab/codeeditor": "~2.2.0",
52+
"@jupyterlab/codemirror": "~2.2.0",
5353
"@jupyterlab/coreutils": "~4.0.0",
54-
"@jupyterlab/docmanager": "~2.0.0",
55-
"@jupyterlab/docregistry": "~2.0.0",
56-
"@jupyterlab/fileeditor": "~2.0.0",
57-
"@jupyterlab/notebook": "~2.0.0",
58-
"@jupyterlab/observables": "~3.0.0",
59-
"@jupyterlab/services": "~5.0.0",
54+
"@jupyterlab/docmanager": "~2.2.0",
55+
"@jupyterlab/docregistry": "~2.2.0",
56+
"@jupyterlab/fileeditor": "~2.2.0",
57+
"@jupyterlab/notebook": "~2.2.0",
58+
"@jupyterlab/observables": "~3.2.0",
59+
"@jupyterlab/services": "~5.2.0",
6060
"@lumino/algorithm": "*",
6161
"codemirror": "*",
6262
"react": "*",
63-
"@jupyterlab/testutils": "~2.0.0",
63+
"@jupyterlab/testutils": "~2.2.0",
6464
"@types/codemirror": "^0.0.74",
6565
"@types/chai": "^4.1.7",
6666
"@types/jest": "^23.3.11",

packages/jupyterlab-go-to-definition/src/jumpers/jumper.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ const system_keys = [
6565
'F2',
6666
'F3',
6767
'F4',
68-
' F5',
68+
'F5',
6969
'F6',
7070
'F7',
7171
'F8',

packages/jupyterlab-lsp/package.json

Lines changed: 31 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -42,22 +42,22 @@
4242
},
4343
"devDependencies": {
4444
"@babel/preset-env": "^7.4.3",
45-
"@jupyterlab/application": "~2.1.0",
46-
"@jupyterlab/apputils": "~2.0.0",
47-
"@jupyterlab/cells": "~2.0.0",
48-
"@jupyterlab/codeeditor": "~2.0.0",
49-
"@jupyterlab/codemirror": "~2.0.0",
50-
"@jupyterlab/completer": "~2.0.0",
51-
"@jupyterlab/coreutils": "~4.0.0",
52-
"@jupyterlab/docmanager": "~2.0.0",
53-
"@jupyterlab/docregistry": "~2.0.0",
54-
"@jupyterlab/fileeditor": "~2.0.0",
55-
"@jupyterlab/notebook": "~2.0.0",
56-
"@jupyterlab/rendermime": "~2.0.0",
57-
"@jupyterlab/services": "~5.0.0",
58-
"@jupyterlab/statusbar": "~2.0.0",
59-
"@jupyterlab/testutils": "~2.0.0",
60-
"@jupyterlab/tooltip": "~2.0.0",
45+
"@jupyterlab/application": "~2.2.0",
46+
"@jupyterlab/apputils": "~2.2.0",
47+
"@jupyterlab/cells": "~2.2.0",
48+
"@jupyterlab/codeeditor": "~2.2.0",
49+
"@jupyterlab/codemirror": "~2.2.0",
50+
"@jupyterlab/completer": "~2.2.0",
51+
"@jupyterlab/coreutils": "~4.2.0",
52+
"@jupyterlab/docmanager": "~2.2.0",
53+
"@jupyterlab/docregistry": "~2.2.0",
54+
"@jupyterlab/fileeditor": "~2.2.0",
55+
"@jupyterlab/notebook": "~2.2.0",
56+
"@jupyterlab/rendermime": "~2.2.0",
57+
"@jupyterlab/services": "~5.2.0",
58+
"@jupyterlab/statusbar": "~2.2.0",
59+
"@jupyterlab/testutils": "~2.2.0",
60+
"@jupyterlab/tooltip": "~2.2.0",
6161
"@lumino/algorithm": "*",
6262
"@lumino/widgets": "*",
6363
"@types/chai": "^4.1.7",
@@ -77,21 +77,21 @@
7777
"typescript": "~3.9.5"
7878
},
7979
"peerDependencies": {
80-
"@jupyterlab/application": "~2.1.0",
81-
"@jupyterlab/apputils": "~2.0.0",
82-
"@jupyterlab/cells": "~2.0.0",
83-
"@jupyterlab/codeeditor": "~2.0.0",
84-
"@jupyterlab/codemirror": "~2.0.0",
85-
"@jupyterlab/completer": "~2.0.0",
86-
"@jupyterlab/coreutils": "~4.0.0",
87-
"@jupyterlab/docmanager": "~2.0.0",
88-
"@jupyterlab/docregistry": "~2.0.0",
89-
"@jupyterlab/fileeditor": "~2.0.0",
90-
"@jupyterlab/notebook": "~2.0.0",
91-
"@jupyterlab/rendermime": "~2.0.0",
92-
"@jupyterlab/services": "~5.0.0",
93-
"@jupyterlab/statusbar": "~2.0.0",
94-
"@jupyterlab/tooltip": "~2.0.0",
80+
"@jupyterlab/application": "~2.2.0",
81+
"@jupyterlab/apputils": "~2.2.0",
82+
"@jupyterlab/cells": "~2.2.0",
83+
"@jupyterlab/codeeditor": "~2.2.0",
84+
"@jupyterlab/codemirror": "~2.2.0",
85+
"@jupyterlab/completer": "~2.2.0",
86+
"@jupyterlab/coreutils": "~4.2.0",
87+
"@jupyterlab/docmanager": "~2.2.0",
88+
"@jupyterlab/docregistry": "~2.2.0",
89+
"@jupyterlab/fileeditor": "~2.2.0",
90+
"@jupyterlab/notebook": "~2.2.0",
91+
"@jupyterlab/rendermime": "~2.2.0",
92+
"@jupyterlab/services": "~5.2.0",
93+
"@jupyterlab/statusbar": "~2.2.0",
94+
"@jupyterlab/tooltip": "~2.2.0",
9595
"@lumino/algorithm": "*",
9696
"@lumino/widgets": "*",
9797
"codemirror": "*",

0 commit comments

Comments
 (0)