Skip to content

Commit b9182a9

Browse files
authored
Pin jupyter_events (#186)
* Pin jupyter_events * Pin python version * Updates fileId minimum version * Update dependencies * Bump galata
1 parent 7bd86d1 commit b9182a9

File tree

8 files changed

+1251
-1203
lines changed

8 files changed

+1251
-1203
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ jobs:
1818
uses: actions/checkout@v3
1919
- name: Set up Python
2020
uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.11'
2123
- name: Install dependencies
2224
run: |
2325
pip install jupyterlab
@@ -49,6 +51,8 @@ jobs:
4951
uses: actions/checkout@v3
5052
- name: Set up Python
5153
uses: actions/setup-python@v4
54+
with:
55+
python-version: '3.11'
5256
- name: Install dependencies
5357
run: |
5458
pip install jupyterlab

packages/collaboration-extension/package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -56,28 +56,28 @@
5656
"@jupyter/collaboration": "^1.0.1",
5757
"@jupyter/docprovider": "^1.0.1",
5858
"@jupyter/ydoc": "^1.1.0-a0",
59-
"@jupyterlab/application": "^4.0.0",
60-
"@jupyterlab/apputils": "^4.0.0",
61-
"@jupyterlab/codemirror": "^4.0.0",
62-
"@jupyterlab/coreutils": "^6.0.0",
63-
"@jupyterlab/docregistry": "^4.0.0",
64-
"@jupyterlab/filebrowser": "^4.0.0",
65-
"@jupyterlab/fileeditor": "^4.0.0",
66-
"@jupyterlab/logconsole": "^4.0.0",
67-
"@jupyterlab/notebook": "^4.0.0",
68-
"@jupyterlab/services": "^7.0.0",
69-
"@jupyterlab/settingregistry": "^4.0.0",
70-
"@jupyterlab/statedb": "^4.0.0",
71-
"@jupyterlab/translation": "^4.0.0",
72-
"@jupyterlab/ui-components": "^4.0.0",
59+
"@jupyterlab/application": "^4.0.5",
60+
"@jupyterlab/apputils": "^4.0.5",
61+
"@jupyterlab/codemirror": "^4.0.5",
62+
"@jupyterlab/coreutils": "^6.0.5",
63+
"@jupyterlab/docregistry": "^4.0.5",
64+
"@jupyterlab/filebrowser": "^4.0.5",
65+
"@jupyterlab/fileeditor": "^4.0.5",
66+
"@jupyterlab/logconsole": "^4.0.5",
67+
"@jupyterlab/notebook": "^4.0.5",
68+
"@jupyterlab/services": "^7.0.5",
69+
"@jupyterlab/settingregistry": "^4.0.5",
70+
"@jupyterlab/statedb": "^4.0.5",
71+
"@jupyterlab/translation": "^4.0.5",
72+
"@jupyterlab/ui-components": "^4.0.5",
7373
"@lumino/commands": "^2.1.0",
7474
"@lumino/widgets": "^2.1.0",
7575
"y-protocols": "^1.0.5",
7676
"y-websocket": "^1.3.15",
7777
"yjs": "^13.5.40"
7878
},
7979
"devDependencies": {
80-
"@jupyterlab/builder": "^4.0.0",
80+
"@jupyterlab/builder": "^4.0.5",
8181
"@types/react": "~18.0.26",
8282
"npm-run-all": "^4.1.5",
8383
"rimraf": "^4.1.2",

packages/collaboration/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,10 @@
4242
"@codemirror/state": "^6.2.0",
4343
"@codemirror/view": "^6.7.0",
4444
"@jupyter/docprovider": "^1.0.1",
45-
"@jupyterlab/apputils": "^4.0.0",
46-
"@jupyterlab/coreutils": "^6.0.0",
47-
"@jupyterlab/services": "^7.0.0",
48-
"@jupyterlab/ui-components": "^4.0.0",
45+
"@jupyterlab/apputils": "^4.0.5",
46+
"@jupyterlab/coreutils": "^6.0.5",
47+
"@jupyterlab/services": "^7.0.5",
48+
"@jupyterlab/ui-components": "^4.0.5",
4949
"@lumino/coreutils": "^2.1.0",
5050
"@lumino/virtualdom": "^2.0.0",
5151
"@lumino/widgets": "^2.1.0",

packages/docprovider/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@
4242
},
4343
"dependencies": {
4444
"@jupyter/ydoc": "^1.1.0-a0",
45-
"@jupyterlab/coreutils": "^6.0.0",
46-
"@jupyterlab/services": "^7.0.0",
45+
"@jupyterlab/coreutils": "^6.0.5",
46+
"@jupyterlab/services": "^7.0.5",
4747
"@lumino/coreutils": "^2.1.0",
4848
"@lumino/disposable": "^2.1.0",
4949
"@lumino/signaling": "^2.1.0",
@@ -52,7 +52,7 @@
5252
"yjs": "^13.5.40"
5353
},
5454
"devDependencies": {
55-
"@jupyterlab/testing": "^4.0.0",
55+
"@jupyterlab/testing": "^4.0.5",
5656
"@types/jest": "^29.2.0",
5757
"jest": "^29.5.0",
5858
"rimraf": "^4.1.2",

pyproject.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ dependencies = [
3030
"jupyter_server>=2.0.0,<3.0.0",
3131
"jupyter_ydoc>=1.1.0a0,<2.0.0",
3232
"ypy-websocket>=0.12.1,<0.13.0",
33-
"jupyter_events",
34-
"jupyter_server_fileid>=0.6.0,<1",
35-
"jsonschema[format-nongpl,format_nongpl]<4.18.0" # https://github.com/jupyter/jupyter_events/pull/80
33+
"jupyter_events>=0.7.0",
34+
"jupyter_server_fileid>=0.7.0,<1",
35+
"jsonschema>=4.18.0"
3636
]
3737
dynamic = ["version", "description", "authors", "urls", "keywords"]
3838

ui-tests/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
"test:update": "npx playwright test --update-snapshots"
1010
},
1111
"devDependencies": {
12-
"@jupyterlab/galata": "^5.0.0",
13-
"@jupyterlab/services": "^7.0.0",
12+
"@jupyterlab/galata": "^5.0.5",
13+
"@jupyterlab/services": "^7.0.5",
1414
"@playwright/test": "^1.35.0"
1515
},
1616
"resolutions": {

0 commit comments

Comments
 (0)