Skip to content

Commit

Permalink
Merge pull request jupyterlab#127 from jtpio/rc0
Browse files Browse the repository at this point in the history
Update package.json deps to rc2
  • Loading branch information
jtpio authored Sep 30, 2020
2 parents 698aa40 + 402e872 commit bd34397
Show file tree
Hide file tree
Showing 54 changed files with 134 additions and 134 deletions.
14 changes: 7 additions & 7 deletions advanced/kernel-messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,19 +43,19 @@
"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.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",
"@lumino/disposable": "^1.4.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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion advanced/kernel-messaging/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion advanced/kernel-messaging/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
14 changes: 7 additions & 7 deletions advanced/kernel-output/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,18 +43,18 @@
"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.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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion advanced/kernel-output/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion advanced/kernel-output/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion advanced/server-extension/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
12 changes: 6 additions & 6 deletions advanced/server-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
"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.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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion advanced/server-extension/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion advanced/server-extension/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
10 changes: 5 additions & 5 deletions basics/datagrid/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@
"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.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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion basics/datagrid/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion basics/datagrid/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion basics/hello-world/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.2"
```
With this basic import setup, you can move on to construct a new instance
Expand Down
6 changes: 3 additions & 3 deletions basics/hello-world/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "~3.0.0-beta.6"
"@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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion basics/hello-world/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion basics/hello-world/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
12 changes: 6 additions & 6 deletions basics/signals/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,17 +43,17 @@
"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.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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion basics/signals/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion basics/signals/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions command-palette/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "~3.0.0-beta.6"
"@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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion command-palette/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion command-palette/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
6 changes: 3 additions & 3 deletions commands/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
"watch:src": "tsc -w"
},
"dependencies": {
"@jupyterlab/application": "~3.0.0-beta.6"
"@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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion commands/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion commands/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
12 changes: 6 additions & 6 deletions context-menu/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,13 @@
"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.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",
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion context-menu/pyproject.toml
Original file line number Diff line number Diff line change
@@ -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"
2 changes: 1 addition & 1 deletion context-menu/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
Loading

0 comments on commit bd34397

Please sign in to comment.