From 1d51b2df766ba841d7ee8fc4fb2cb7b99e532eab Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 28 Sep 2020 20:43:31 +0200 Subject: [PATCH 1/4] Update package.json deps to rc0 --- advanced/kernel-messaging/package.json | 10 +++++----- advanced/kernel-output/package.json | 10 +++++----- advanced/server-extension/package.json | 8 ++++---- basics/datagrid/package.json | 6 +++--- basics/hello-world/README.md | 2 +- basics/hello-world/package.json | 2 +- basics/signals/package.json | 8 ++++---- command-palette/package.json | 2 +- commands/package.json | 2 +- context-menu/package.json | 8 ++++---- launcher/package.json | 8 ++++---- log-console/custom-log-console/package.json | 16 ++++++++-------- log-console/log-messages/package.json | 18 +++++++++--------- main-menu/README.md | 4 ++-- main-menu/package.json | 4 ++-- react/react-widget/package.json | 6 +++--- settings/package.json | 6 +++--- state/package.json | 6 +++--- widget-tracker/widgets/package.json | 4 ++-- 19 files changed, 65 insertions(+), 65 deletions(-) diff --git a/advanced/kernel-messaging/package.json b/advanced/kernel-messaging/package.json index 6eeadb95..0eab8a22 100644 --- a/advanced/kernel-messaging/package.json +++ b/advanced/kernel-messaging/package.json @@ -43,11 +43,11 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/launcher": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/nbformat": "~3.0.0-beta.6", - "@jupyterlab/translation": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/nbformat": "~3.0.0-rc.0", + "@jupyterlab/translation": "~3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.5.2", diff --git a/advanced/kernel-output/package.json b/advanced/kernel-output/package.json index 59b1d598..eb2b9f80 100644 --- a/advanced/kernel-output/package.json +++ b/advanced/kernel-output/package.json @@ -43,11 +43,11 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/launcher": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/outputarea": "~3.0.0-beta.6", - "@jupyterlab/translation": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/outputarea": "~3.0.0-rc.0", + "@jupyterlab/translation": "~3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.3.1", diff --git a/advanced/server-extension/package.json b/advanced/server-extension/package.json index dd56085b..dfca5486 100644 --- a/advanced/server-extension/package.json +++ b/advanced/server-extension/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/coreutils": "~5.0.0-beta.6", - "@jupyterlab/launcher": "~3.0.0-beta.6", - "@jupyterlab/services": "~6.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/coreutils": "~5.0.0-rc.0", + "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/services": "~6.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/basics/datagrid/package.json b/basics/datagrid/package.json index 35546b99..511d37c7 100644 --- a/basics/datagrid/package.json +++ b/basics/datagrid/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/translation": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/translation": "~3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.5.2", diff --git a/basics/hello-world/README.md b/basics/hello-world/README.md index 3d4747a9..3c448c82 100644 --- a/basics/hello-world/README.md +++ b/basics/hello-world/README.md @@ -95,7 +95,7 @@ package is declared in the file `package.json`: }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0" ``` With this basic import setup, you can move on to construct a new instance diff --git a/basics/hello-world/package.json b/basics/hello-world/package.json index e6b6b0ff..f3e89d94 100644 --- a/basics/hello-world/package.json +++ b/basics/hello-world/package.json @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/basics/signals/package.json b/basics/signals/package.json index a423128d..3029be0d 100644 --- a/basics/signals/package.json +++ b/basics/signals/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/launcher": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/translation": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/translation": "~3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.3.1", diff --git a/command-palette/package.json b/command-palette/package.json index ba944e84..7e38c520 100644 --- a/command-palette/package.json +++ b/command-palette/package.json @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/commands/package.json b/commands/package.json index a955a81a..f8678cb3 100644 --- a/commands/package.json +++ b/commands/package.json @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/context-menu/package.json b/context-menu/package.json index 8da5c39a..ea5ebd79 100644 --- a/context-menu/package.json +++ b/context-menu/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/apputils": "~3.0.0-beta.6", - "@jupyterlab/filebrowser": "~3.0.0-beta.6", - "@jupyterlab/ui-components": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/apputils": "~3.0.0-rc.0", + "@jupyterlab/filebrowser": "~3.0.0-rc.0", + "@jupyterlab/ui-components": "~3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/launcher/package.json b/launcher/package.json index 035f2b44..596de4e8 100644 --- a/launcher/package.json +++ b/launcher/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/filebrowser": "~3.0.0-beta.6", - "@jupyterlab/launcher": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/filebrowser": "~3.0.0-rc.0", + "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/log-console/custom-log-console/package.json b/log-console/custom-log-console/package.json index 96297442..a2c8fdac 100644 --- a/log-console/custom-log-console/package.json +++ b/log-console/custom-log-console/package.json @@ -43,14 +43,14 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/apputils": "~3.0.0-beta.6", - "@jupyterlab/coreutils": "~5.0.0-beta.6", - "@jupyterlab/logconsole": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/nbformat": "~3.0.0-beta.6", - "@jupyterlab/rendermime": "~3.0.0-beta.6", - "@jupyterlab/ui-components": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/apputils": "~3.0.0-rc.0", + "@jupyterlab/coreutils": "~5.0.0-rc.0", + "@jupyterlab/logconsole": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/nbformat": "~3.0.0-rc.0", + "@jupyterlab/rendermime": "~3.0.0-rc.0", + "@jupyterlab/ui-components": "~3.0.0-rc.0", "@lumino/coreutils": "^1.5.3", "@lumino/widgets": "^1.14.0" }, diff --git a/log-console/log-messages/package.json b/log-console/log-messages/package.json index cbe173dc..970c1b16 100644 --- a/log-console/log-messages/package.json +++ b/log-console/log-messages/package.json @@ -43,15 +43,15 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/apputils": "~3.0.0-beta.6", - "@jupyterlab/coreutils": "~5.0.0-beta.6", - "@jupyterlab/logconsole": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/nbformat": "~3.0.0-beta.6", - "@jupyterlab/notebook": "~3.0.0-beta.6", - "@jupyterlab/rendermime": "~3.0.0-beta.6", - "@jupyterlab/ui-components": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/apputils": "~3.0.0-rc.0", + "@jupyterlab/coreutils": "~5.0.0-rc.0", + "@jupyterlab/logconsole": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/nbformat": "~3.0.0-rc.0", + "@jupyterlab/notebook": "~3.0.0-rc.0", + "@jupyterlab/rendermime": "~3.0.0-rc.0", + "@jupyterlab/ui-components": "~3.0.0-rc.0", "@lumino/coreutils": "^1.5.3", "@lumino/widgets": "^1.14.0" }, diff --git a/main-menu/README.md b/main-menu/README.md index 44e9d82f..e9b4cfd1 100644 --- a/main-menu/README.md +++ b/main-menu/README.md @@ -89,8 +89,8 @@ After the execution of that command, `package.json` should list them in the }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", "@lumino/widgets": "^1.14.0" ``` diff --git a/main-menu/package.json b/main-menu/package.json index 7e270acc..6667a6b5 100644 --- a/main-menu/package.json +++ b/main-menu/package.json @@ -43,8 +43,8 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", "@lumino/widgets": "^1.14.0" }, "devDependencies": { diff --git a/react/react-widget/package.json b/react/react-widget/package.json index 0c33713f..4fcce9d6 100644 --- a/react/react-widget/package.json +++ b/react/react-widget/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/launcher": "~3.0.0-beta.6", - "@jupyterlab/ui-components": "~3.0.0-beta.6" + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/ui-components": "~3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/settings/package.json b/settings/package.json index a27da662..a129cb51 100644 --- a/settings/package.json +++ b/settings/package.json @@ -44,9 +44,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", - "@jupyterlab/settingregistry": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/settingregistry": "~3.0.0-rc.0", "@lumino/widgets": "^1.14.0" }, "devDependencies": { diff --git a/state/package.json b/state/package.json index c51b83d3..498e3ac4 100644 --- a/state/package.json +++ b/state/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/apputils": "~3.0.0-beta.6", - "@jupyterlab/statedb": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/apputils": "~3.0.0-rc.0", + "@jupyterlab/statedb": "~3.0.0-rc.0", "@lumino/coreutils": "^1.5.3" }, "devDependencies": { diff --git a/widget-tracker/widgets/package.json b/widget-tracker/widgets/package.json index ab43933a..ffa3291d 100644 --- a/widget-tracker/widgets/package.json +++ b/widget-tracker/widgets/package.json @@ -43,8 +43,8 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-beta.6", - "@jupyterlab/mainmenu": "~3.0.0-beta.6", + "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/mainmenu": "~3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/disposable": "^1.4.3" From 5e978b7fd12554685476f05878e9fff3795ed78d Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Mon, 28 Sep 2020 20:46:30 +0200 Subject: [PATCH 2/4] Update to caret --- advanced/kernel-messaging/package.json | 10 +++++----- advanced/kernel-output/package.json | 10 +++++----- advanced/server-extension/package.json | 4 ++-- basics/datagrid/package.json | 6 +++--- basics/hello-world/README.md | 2 +- basics/hello-world/package.json | 2 +- basics/signals/package.json | 8 ++++---- command-palette/package.json | 2 +- commands/package.json | 2 +- context-menu/package.json | 8 ++++---- launcher/package.json | 8 ++++---- log-console/custom-log-console/package.json | 14 +++++++------- log-console/log-messages/package.json | 16 ++++++++-------- main-menu/README.md | 4 ++-- main-menu/package.json | 4 ++-- react/react-widget/package.json | 6 +++--- settings/package.json | 6 +++--- state/package.json | 6 +++--- widget-tracker/widgets/package.json | 4 ++-- 19 files changed, 61 insertions(+), 61 deletions(-) diff --git a/advanced/kernel-messaging/package.json b/advanced/kernel-messaging/package.json index 0eab8a22..aeb94e01 100644 --- a/advanced/kernel-messaging/package.json +++ b/advanced/kernel-messaging/package.json @@ -43,11 +43,11 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/launcher": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/nbformat": "~3.0.0-rc.0", - "@jupyterlab/translation": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/launcher": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/nbformat": "^3.0.0-rc.0", + "@jupyterlab/translation": "^3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.5.2", diff --git a/advanced/kernel-output/package.json b/advanced/kernel-output/package.json index eb2b9f80..0aa5e870 100644 --- a/advanced/kernel-output/package.json +++ b/advanced/kernel-output/package.json @@ -43,11 +43,11 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/launcher": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/outputarea": "~3.0.0-rc.0", - "@jupyterlab/translation": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/launcher": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/outputarea": "^3.0.0-rc.0", + "@jupyterlab/translation": "^3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.3.1", diff --git a/advanced/server-extension/package.json b/advanced/server-extension/package.json index dfca5486..91061862 100644 --- a/advanced/server-extension/package.json +++ b/advanced/server-extension/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", "@jupyterlab/coreutils": "~5.0.0-rc.0", - "@jupyterlab/launcher": "~3.0.0-rc.0", + "@jupyterlab/launcher": "^3.0.0-rc.0", "@jupyterlab/services": "~6.0.0-rc.0" }, "devDependencies": { diff --git a/basics/datagrid/package.json b/basics/datagrid/package.json index 511d37c7..8b04ae1d 100644 --- a/basics/datagrid/package.json +++ b/basics/datagrid/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/translation": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/translation": "^3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.5.2", diff --git a/basics/hello-world/README.md b/basics/hello-world/README.md index 3c448c82..e1e11abe 100644 --- a/basics/hello-world/README.md +++ b/basics/hello-world/README.md @@ -95,7 +95,7 @@ package is declared in the file `package.json`: }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0" ``` With this basic import setup, you can move on to construct a new instance diff --git a/basics/hello-world/package.json b/basics/hello-world/package.json index f3e89d94..e35320a0 100644 --- a/basics/hello-world/package.json +++ b/basics/hello-world/package.json @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/basics/signals/package.json b/basics/signals/package.json index 3029be0d..2eea6f08 100644 --- a/basics/signals/package.json +++ b/basics/signals/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/launcher": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/translation": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/launcher": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/translation": "^3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.3.1", diff --git a/command-palette/package.json b/command-palette/package.json index 7e38c520..59eac7ef 100644 --- a/command-palette/package.json +++ b/command-palette/package.json @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/commands/package.json b/commands/package.json index f8678cb3..6136fbe1 100644 --- a/commands/package.json +++ b/commands/package.json @@ -43,7 +43,7 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/context-menu/package.json b/context-menu/package.json index ea5ebd79..87d11988 100644 --- a/context-menu/package.json +++ b/context-menu/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/apputils": "~3.0.0-rc.0", - "@jupyterlab/filebrowser": "~3.0.0-rc.0", - "@jupyterlab/ui-components": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/apputils": "^3.0.0-rc.0", + "@jupyterlab/filebrowser": "^3.0.0-rc.0", + "@jupyterlab/ui-components": "^3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/launcher/package.json b/launcher/package.json index 596de4e8..0296d37f 100644 --- a/launcher/package.json +++ b/launcher/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/filebrowser": "~3.0.0-rc.0", - "@jupyterlab/launcher": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/filebrowser": "^3.0.0-rc.0", + "@jupyterlab/launcher": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/log-console/custom-log-console/package.json b/log-console/custom-log-console/package.json index a2c8fdac..9a6b1494 100644 --- a/log-console/custom-log-console/package.json +++ b/log-console/custom-log-console/package.json @@ -43,14 +43,14 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/apputils": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/apputils": "^3.0.0-rc.0", "@jupyterlab/coreutils": "~5.0.0-rc.0", - "@jupyterlab/logconsole": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/nbformat": "~3.0.0-rc.0", - "@jupyterlab/rendermime": "~3.0.0-rc.0", - "@jupyterlab/ui-components": "~3.0.0-rc.0", + "@jupyterlab/logconsole": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/nbformat": "^3.0.0-rc.0", + "@jupyterlab/rendermime": "^3.0.0-rc.0", + "@jupyterlab/ui-components": "^3.0.0-rc.0", "@lumino/coreutils": "^1.5.3", "@lumino/widgets": "^1.14.0" }, diff --git a/log-console/log-messages/package.json b/log-console/log-messages/package.json index 970c1b16..12273579 100644 --- a/log-console/log-messages/package.json +++ b/log-console/log-messages/package.json @@ -43,15 +43,15 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/apputils": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/apputils": "^3.0.0-rc.0", "@jupyterlab/coreutils": "~5.0.0-rc.0", - "@jupyterlab/logconsole": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/nbformat": "~3.0.0-rc.0", - "@jupyterlab/notebook": "~3.0.0-rc.0", - "@jupyterlab/rendermime": "~3.0.0-rc.0", - "@jupyterlab/ui-components": "~3.0.0-rc.0", + "@jupyterlab/logconsole": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/nbformat": "^3.0.0-rc.0", + "@jupyterlab/notebook": "^3.0.0-rc.0", + "@jupyterlab/rendermime": "^3.0.0-rc.0", + "@jupyterlab/ui-components": "^3.0.0-rc.0", "@lumino/coreutils": "^1.5.3", "@lumino/widgets": "^1.14.0" }, diff --git a/main-menu/README.md b/main-menu/README.md index e9b4cfd1..cce61cee 100644 --- a/main-menu/README.md +++ b/main-menu/README.md @@ -89,8 +89,8 @@ After the execution of that command, `package.json` should list them in the }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", "@lumino/widgets": "^1.14.0" ``` diff --git a/main-menu/package.json b/main-menu/package.json index 6667a6b5..d0f108cd 100644 --- a/main-menu/package.json +++ b/main-menu/package.json @@ -43,8 +43,8 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", "@lumino/widgets": "^1.14.0" }, "devDependencies": { diff --git a/react/react-widget/package.json b/react/react-widget/package.json index 4fcce9d6..dc8bdc83 100644 --- a/react/react-widget/package.json +++ b/react/react-widget/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/launcher": "~3.0.0-rc.0", - "@jupyterlab/ui-components": "~3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/launcher": "^3.0.0-rc.0", + "@jupyterlab/ui-components": "^3.0.0-rc.0" }, "devDependencies": { "@jupyterlab/builder": "^3.0.0-rc.0", diff --git a/settings/package.json b/settings/package.json index a129cb51..622abc5f 100644 --- a/settings/package.json +++ b/settings/package.json @@ -44,9 +44,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", - "@jupyterlab/settingregistry": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/settingregistry": "^3.0.0-rc.0", "@lumino/widgets": "^1.14.0" }, "devDependencies": { diff --git a/state/package.json b/state/package.json index 498e3ac4..190f2413 100644 --- a/state/package.json +++ b/state/package.json @@ -43,9 +43,9 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/apputils": "~3.0.0-rc.0", - "@jupyterlab/statedb": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/apputils": "^3.0.0-rc.0", + "@jupyterlab/statedb": "^3.0.0-rc.0", "@lumino/coreutils": "^1.5.3" }, "devDependencies": { diff --git a/widget-tracker/widgets/package.json b/widget-tracker/widgets/package.json index ffa3291d..47e430b4 100644 --- a/widget-tracker/widgets/package.json +++ b/widget-tracker/widgets/package.json @@ -43,8 +43,8 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "~3.0.0-rc.0", - "@jupyterlab/mainmenu": "~3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.0", + "@jupyterlab/mainmenu": "^3.0.0-rc.0", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/disposable": "^1.4.3" From 4119687fd6bff00c5aae880a03770a2e932bbebb Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 30 Sep 2020 10:38:30 +0200 Subject: [PATCH 3/4] Update to rc2 using the script --- advanced/kernel-messaging/package.json | 14 ++++++------ advanced/kernel-messaging/pyproject.toml | 2 +- advanced/kernel-messaging/setup.py | 2 +- advanced/kernel-output/package.json | 14 ++++++------ advanced/kernel-output/pyproject.toml | 2 +- advanced/kernel-output/setup.py | 2 +- advanced/server-extension/package.json | 12 +++++----- advanced/server-extension/pyproject.toml | 2 +- advanced/server-extension/setup.py | 2 +- basics/datagrid/package.json | 10 ++++----- basics/datagrid/pyproject.toml | 2 +- basics/datagrid/setup.py | 2 +- basics/hello-world/package.json | 6 ++--- basics/hello-world/pyproject.toml | 2 +- basics/hello-world/setup.py | 2 +- basics/signals/package.json | 12 +++++----- basics/signals/pyproject.toml | 2 +- basics/signals/setup.py | 2 +- command-palette/package.json | 6 ++--- command-palette/pyproject.toml | 2 +- command-palette/setup.py | 2 +- commands/package.json | 6 ++--- commands/pyproject.toml | 2 +- commands/setup.py | 2 +- context-menu/package.json | 12 +++++----- context-menu/pyproject.toml | 2 +- context-menu/setup.py | 2 +- launcher/package.json | 12 +++++----- launcher/pyproject.toml | 2 +- launcher/setup.py | 2 +- log-console/custom-log-console/package.json | 20 ++++++++--------- log-console/custom-log-console/pyproject.toml | 2 +- log-console/custom-log-console/setup.py | 2 +- log-console/log-messages/package.json | 22 +++++++++---------- log-console/log-messages/pyproject.toml | 2 +- log-console/log-messages/setup.py | 2 +- main-menu/package.json | 8 +++---- main-menu/pyproject.toml | 2 +- main-menu/setup.py | 2 +- react/react-widget/package.json | 10 ++++----- react/react-widget/pyproject.toml | 2 +- react/react-widget/setup.py | 2 +- settings/package.json | 10 ++++----- settings/pyproject.toml | 2 +- settings/setup.py | 2 +- state/package.json | 10 ++++----- state/pyproject.toml | 2 +- state/setup.py | 2 +- widget-tracker/widgets/package.json | 8 +++---- widget-tracker/widgets/pyproject.toml | 2 +- widget-tracker/widgets/setup.py | 2 +- 51 files changed, 130 insertions(+), 130 deletions(-) diff --git a/advanced/kernel-messaging/package.json b/advanced/kernel-messaging/package.json index aeb94e01..72a984dd 100644 --- a/advanced/kernel-messaging/package.json +++ b/advanced/kernel-messaging/package.json @@ -43,11 +43,11 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/launcher": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/nbformat": "^3.0.0-rc.0", - "@jupyterlab/translation": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/launcher": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/nbformat": "^3.0.0-rc.2", + "@jupyterlab/translation": "^3.0.0-rc.2", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.5.2", @@ -55,7 +55,7 @@ "@lumino/widgets": "^1.14.0" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -66,7 +66,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/advanced/kernel-messaging/pyproject.toml b/advanced/kernel-messaging/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/advanced/kernel-messaging/pyproject.toml +++ b/advanced/kernel-messaging/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/advanced/kernel-messaging/setup.py b/advanced/kernel-messaging/setup.py index 6f4555c2..74f5d69b 100644 --- a/advanced/kernel-messaging/setup.py +++ b/advanced/kernel-messaging/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/advanced/kernel-output/package.json b/advanced/kernel-output/package.json index 0aa5e870..51c833ef 100644 --- a/advanced/kernel-output/package.json +++ b/advanced/kernel-output/package.json @@ -43,18 +43,18 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/launcher": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/outputarea": "^3.0.0-rc.0", - "@jupyterlab/translation": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/launcher": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/outputarea": "^3.0.0-rc.2", + "@jupyterlab/translation": "^3.0.0-rc.2", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.3.1", "@lumino/disposable": "^1.4.3" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -65,7 +65,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/advanced/kernel-output/pyproject.toml b/advanced/kernel-output/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/advanced/kernel-output/pyproject.toml +++ b/advanced/kernel-output/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/advanced/kernel-output/setup.py b/advanced/kernel-output/setup.py index f4ae05f9..6882deef 100644 --- a/advanced/kernel-output/setup.py +++ b/advanced/kernel-output/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/advanced/server-extension/package.json b/advanced/server-extension/package.json index 91061862..2c08b6d8 100644 --- a/advanced/server-extension/package.json +++ b/advanced/server-extension/package.json @@ -43,13 +43,13 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/coreutils": "~5.0.0-rc.0", - "@jupyterlab/launcher": "^3.0.0-rc.0", - "@jupyterlab/services": "~6.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/coreutils": "^5.0.0-rc.2", + "@jupyterlab/launcher": "^3.0.0-rc.2", + "@jupyterlab/services": "^6.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -61,7 +61,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/advanced/server-extension/pyproject.toml b/advanced/server-extension/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/advanced/server-extension/pyproject.toml +++ b/advanced/server-extension/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/advanced/server-extension/setup.py b/advanced/server-extension/setup.py index 480fc206..7ab40eb3 100644 --- a/advanced/server-extension/setup.py +++ b/advanced/server-extension/setup.py @@ -63,7 +63,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/basics/datagrid/package.json b/basics/datagrid/package.json index 8b04ae1d..41b0325c 100644 --- a/basics/datagrid/package.json +++ b/basics/datagrid/package.json @@ -43,16 +43,16 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/translation": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/translation": "^3.0.0-rc.2", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.5.2", "@lumino/disposable": "^1.4.3" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -63,7 +63,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/basics/datagrid/pyproject.toml b/basics/datagrid/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/basics/datagrid/pyproject.toml +++ b/basics/datagrid/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/basics/datagrid/setup.py b/basics/datagrid/setup.py index 90497cea..6b444e10 100644 --- a/basics/datagrid/setup.py +++ b/basics/datagrid/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/basics/hello-world/package.json b/basics/hello-world/package.json index e35320a0..04c013cf 100644 --- a/basics/hello-world/package.json +++ b/basics/hello-world/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -57,7 +57,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/basics/hello-world/pyproject.toml b/basics/hello-world/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/basics/hello-world/pyproject.toml +++ b/basics/hello-world/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/basics/hello-world/setup.py b/basics/hello-world/setup.py index 2e520849..ee01a2bd 100644 --- a/basics/hello-world/setup.py +++ b/basics/hello-world/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/basics/signals/package.json b/basics/signals/package.json index 2eea6f08..5b47fecf 100644 --- a/basics/signals/package.json +++ b/basics/signals/package.json @@ -43,17 +43,17 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/launcher": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/translation": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/launcher": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/translation": "^3.0.0-rc.2", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/datagrid": "^0.3.1", "@lumino/disposable": "^1.4.3" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -64,7 +64,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/basics/signals/pyproject.toml b/basics/signals/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/basics/signals/pyproject.toml +++ b/basics/signals/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/basics/signals/setup.py b/basics/signals/setup.py index 488b4a70..0a33d3cf 100644 --- a/basics/signals/setup.py +++ b/basics/signals/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/command-palette/package.json b/command-palette/package.json index 59eac7ef..c7f98c3e 100644 --- a/command-palette/package.json +++ b/command-palette/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -57,7 +57,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/command-palette/pyproject.toml b/command-palette/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/command-palette/pyproject.toml +++ b/command-palette/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/command-palette/setup.py b/command-palette/setup.py index 242979dd..b8831a51 100644 --- a/command-palette/setup.py +++ b/command-palette/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/commands/package.json b/commands/package.json index 6136fbe1..d72495b2 100644 --- a/commands/package.json +++ b/commands/package.json @@ -43,10 +43,10 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -57,7 +57,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/commands/pyproject.toml b/commands/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/commands/pyproject.toml +++ b/commands/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/commands/setup.py b/commands/setup.py index f1d3ba19..b1ffd560 100644 --- a/commands/setup.py +++ b/commands/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/context-menu/package.json b/context-menu/package.json index 87d11988..4960b14e 100644 --- a/context-menu/package.json +++ b/context-menu/package.json @@ -43,13 +43,13 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/apputils": "^3.0.0-rc.0", - "@jupyterlab/filebrowser": "^3.0.0-rc.0", - "@jupyterlab/ui-components": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/apputils": "^3.0.0-rc.2", + "@jupyterlab/filebrowser": "^3.0.0-rc.2", + "@jupyterlab/ui-components": "^3.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -60,7 +60,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/context-menu/pyproject.toml b/context-menu/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/context-menu/pyproject.toml +++ b/context-menu/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/context-menu/setup.py b/context-menu/setup.py index 78452824..21e5b00c 100644 --- a/context-menu/setup.py +++ b/context-menu/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/launcher/package.json b/launcher/package.json index 0296d37f..a2563a78 100644 --- a/launcher/package.json +++ b/launcher/package.json @@ -43,13 +43,13 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/filebrowser": "^3.0.0-rc.0", - "@jupyterlab/launcher": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/filebrowser": "^3.0.0-rc.2", + "@jupyterlab/launcher": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -60,7 +60,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css", diff --git a/launcher/pyproject.toml b/launcher/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/launcher/pyproject.toml +++ b/launcher/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/launcher/setup.py b/launcher/setup.py index 7a714039..e480e930 100644 --- a/launcher/setup.py +++ b/launcher/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/log-console/custom-log-console/package.json b/log-console/custom-log-console/package.json index 9a6b1494..5b7a69f6 100644 --- a/log-console/custom-log-console/package.json +++ b/log-console/custom-log-console/package.json @@ -43,19 +43,19 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/apputils": "^3.0.0-rc.0", - "@jupyterlab/coreutils": "~5.0.0-rc.0", - "@jupyterlab/logconsole": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/nbformat": "^3.0.0-rc.0", - "@jupyterlab/rendermime": "^3.0.0-rc.0", - "@jupyterlab/ui-components": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/apputils": "^3.0.0-rc.2", + "@jupyterlab/coreutils": "^5.0.0-rc.2", + "@jupyterlab/logconsole": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/nbformat": "^3.0.0-rc.2", + "@jupyterlab/rendermime": "^3.0.0-rc.2", + "@jupyterlab/ui-components": "^3.0.0-rc.2", "@lumino/coreutils": "^1.5.3", "@lumino/widgets": "^1.14.0" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -66,7 +66,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/log-console/custom-log-console/pyproject.toml b/log-console/custom-log-console/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/log-console/custom-log-console/pyproject.toml +++ b/log-console/custom-log-console/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/log-console/custom-log-console/setup.py b/log-console/custom-log-console/setup.py index 1d3d223a..aaccffd6 100644 --- a/log-console/custom-log-console/setup.py +++ b/log-console/custom-log-console/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/log-console/log-messages/package.json b/log-console/log-messages/package.json index 12273579..733ae095 100644 --- a/log-console/log-messages/package.json +++ b/log-console/log-messages/package.json @@ -43,20 +43,20 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/apputils": "^3.0.0-rc.0", - "@jupyterlab/coreutils": "~5.0.0-rc.0", - "@jupyterlab/logconsole": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/nbformat": "^3.0.0-rc.0", - "@jupyterlab/notebook": "^3.0.0-rc.0", - "@jupyterlab/rendermime": "^3.0.0-rc.0", - "@jupyterlab/ui-components": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/apputils": "^3.0.0-rc.2", + "@jupyterlab/coreutils": "^5.0.0-rc.2", + "@jupyterlab/logconsole": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/nbformat": "^3.0.0-rc.2", + "@jupyterlab/notebook": "^3.0.0-rc.2", + "@jupyterlab/rendermime": "^3.0.0-rc.2", + "@jupyterlab/ui-components": "^3.0.0-rc.2", "@lumino/coreutils": "^1.5.3", "@lumino/widgets": "^1.14.0" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -67,7 +67,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/log-console/log-messages/pyproject.toml b/log-console/log-messages/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/log-console/log-messages/pyproject.toml +++ b/log-console/log-messages/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/log-console/log-messages/setup.py b/log-console/log-messages/setup.py index f5e15ea1..c3126dc0 100644 --- a/log-console/log-messages/setup.py +++ b/log-console/log-messages/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/main-menu/package.json b/main-menu/package.json index d0f108cd..ddd1d4aa 100644 --- a/main-menu/package.json +++ b/main-menu/package.json @@ -43,12 +43,12 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", "@lumino/widgets": "^1.14.0" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -59,7 +59,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/main-menu/pyproject.toml b/main-menu/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/main-menu/pyproject.toml +++ b/main-menu/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/main-menu/setup.py b/main-menu/setup.py index 2ad02b21..c05e19b0 100644 --- a/main-menu/setup.py +++ b/main-menu/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/react/react-widget/package.json b/react/react-widget/package.json index dc8bdc83..f173083e 100644 --- a/react/react-widget/package.json +++ b/react/react-widget/package.json @@ -43,12 +43,12 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/launcher": "^3.0.0-rc.0", - "@jupyterlab/ui-components": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/launcher": "^3.0.0-rc.2", + "@jupyterlab/ui-components": "^3.0.0-rc.2" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -59,7 +59,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/react/react-widget/pyproject.toml b/react/react-widget/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/react/react-widget/pyproject.toml +++ b/react/react-widget/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/react/react-widget/setup.py b/react/react-widget/setup.py index 4583adf0..773bf515 100644 --- a/react/react-widget/setup.py +++ b/react/react-widget/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/settings/package.json b/settings/package.json index 622abc5f..fff20af3 100644 --- a/settings/package.json +++ b/settings/package.json @@ -44,13 +44,13 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", - "@jupyterlab/settingregistry": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", + "@jupyterlab/settingregistry": "^3.0.0-rc.2", "@lumino/widgets": "^1.14.0" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -61,7 +61,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/settings/pyproject.toml b/settings/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/settings/pyproject.toml +++ b/settings/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/settings/setup.py b/settings/setup.py index 17541821..089c8447 100644 --- a/settings/setup.py +++ b/settings/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/state/package.json b/state/package.json index 190f2413..13d14ec8 100644 --- a/state/package.json +++ b/state/package.json @@ -43,13 +43,13 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/apputils": "^3.0.0-rc.0", - "@jupyterlab/statedb": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/apputils": "^3.0.0-rc.2", + "@jupyterlab/statedb": "^3.0.0-rc.2", "@lumino/coreutils": "^1.5.3" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -60,7 +60,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/state/pyproject.toml b/state/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/state/pyproject.toml +++ b/state/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/state/setup.py b/state/setup.py index 68bc800d..281ed5bd 100644 --- a/state/setup.py +++ b/state/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/widget-tracker/widgets/package.json b/widget-tracker/widgets/package.json index 47e430b4..913884df 100644 --- a/widget-tracker/widgets/package.json +++ b/widget-tracker/widgets/package.json @@ -43,14 +43,14 @@ "watch:src": "tsc -w" }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", "@lumino/algorithm": "^1.3.3", "@lumino/coreutils": "^1.5.3", "@lumino/disposable": "^1.4.3" }, "devDependencies": { - "@jupyterlab/builder": "^3.0.0-rc.0", + "@jupyterlab/builder": "^3.0.0-rc.2", "@typescript-eslint/eslint-plugin": "^2.27.0", "@typescript-eslint/parser": "^2.27.0", "eslint": "^7.5.0", @@ -61,7 +61,7 @@ "npm-run-all": "^4.1.5", "prettier": "^1.19.0", "rimraf": "^3.0.2", - "typescript": "~3.9.0" + "typescript": "~4.0.3" }, "sideEffects": [ "style/*.css" diff --git a/widget-tracker/widgets/pyproject.toml b/widget-tracker/widgets/pyproject.toml index 93ec5cf1..ca305776 100644 --- a/widget-tracker/widgets/pyproject.toml +++ b/widget-tracker/widgets/pyproject.toml @@ -1,3 +1,3 @@ [build-system] -requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc0,==3.*", "setuptools>=40.8.0", "wheel"] +requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"] build-backend = "setuptools.build_meta" diff --git a/widget-tracker/widgets/setup.py b/widget-tracker/widgets/setup.py index 95cdd333..e28251d0 100644 --- a/widget-tracker/widgets/setup.py +++ b/widget-tracker/widgets/setup.py @@ -61,7 +61,7 @@ cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, From 402e872a3635c9b922b61f08e1c5efde040d9aab Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Wed, 30 Sep 2020 10:45:27 +0200 Subject: [PATCH 4/4] Update READMEs with embedme --- advanced/server-extension/README.md | 2 +- basics/hello-world/README.md | 2 +- main-menu/README.md | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/advanced/server-extension/README.md b/advanced/server-extension/README.md index 1304f3cf..6cef50f6 100644 --- a/advanced/server-extension/README.md +++ b/advanced/server-extension/README.md @@ -559,7 +559,7 @@ setup_args = dict( cmdclass= cmdclass, packages=setuptools.find_packages(), install_requires=[ - "jupyterlab>=3.0.0rc0,==3.*", + "jupyterlab>=3.0.0rc2,==3.*", ], zip_safe=False, include_package_data=True, diff --git a/basics/hello-world/README.md b/basics/hello-world/README.md index e1e11abe..ea946b4a 100644 --- a/basics/hello-world/README.md +++ b/basics/hello-world/README.md @@ -95,7 +95,7 @@ package is declared in the file `package.json`: }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0" + "@jupyterlab/application": "^3.0.0-rc.2" ``` With this basic import setup, you can move on to construct a new instance diff --git a/main-menu/README.md b/main-menu/README.md index cce61cee..3c765702 100644 --- a/main-menu/README.md +++ b/main-menu/README.md @@ -89,8 +89,8 @@ After the execution of that command, `package.json` should list them in the }, "dependencies": { - "@jupyterlab/application": "^3.0.0-rc.0", - "@jupyterlab/mainmenu": "^3.0.0-rc.0", + "@jupyterlab/application": "^3.0.0-rc.2", + "@jupyterlab/mainmenu": "^3.0.0-rc.2", "@lumino/widgets": "^1.14.0" ```