Skip to content

Commit cf61326

Browse files
committed
Update to the latest RC
1 parent 6b7dbd3 commit cf61326

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

86 files changed

+307
-205
lines changed

advanced/kernel-messaging/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -44,19 +44,19 @@
4444
"watch:src": "tsc -w"
4545
},
4646
"dependencies": {
47-
"@jupyterlab/application": "^3.0.0-rc.7",
48-
"@jupyterlab/launcher": "^3.0.0-rc.7",
49-
"@jupyterlab/mainmenu": "^3.0.0-rc.7",
50-
"@jupyterlab/nbformat": "^3.0.0-rc.7",
51-
"@jupyterlab/translation": "^3.0.0-rc.7",
47+
"@jupyterlab/application": "^3.0.0-rc.15",
48+
"@jupyterlab/launcher": "^3.0.0-rc.15",
49+
"@jupyterlab/mainmenu": "^3.0.0-rc.15",
50+
"@jupyterlab/nbformat": "^3.0.0-rc.15",
51+
"@jupyterlab/translation": "^3.0.0-rc.15",
5252
"@lumino/algorithm": "^1.3.3",
5353
"@lumino/coreutils": "^1.5.3",
5454
"@lumino/datagrid": "^0.5.2",
5555
"@lumino/disposable": "^1.4.3",
56-
"@lumino/widgets": "^1.14.0"
56+
"@lumino/widgets": "^1.16.1"
5757
},
5858
"devDependencies": {
59-
"@jupyterlab/builder": "^3.0.0-rc.7",
59+
"@jupyterlab/builder": "^3.0.0-rc.15",
6060
"@typescript-eslint/eslint-plugin": "^2.27.0",
6161
"@typescript-eslint/parser": "^2.27.0",
6262
"eslint": "^7.5.0",
@@ -67,7 +67,7 @@
6767
"npm-run-all": "^4.1.5",
6868
"prettier": "^1.19.0",
6969
"rimraf": "^3.0.2",
70-
"typescript": "~4.0.3"
70+
"typescript": "~4.1.3"
7171
},
7272
"sideEffects": [
7373
"style/*.css"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"]
2+
requires = ["jupyter_packaging~=0.7.9", "jupyterlab>=3.0.0rc15,==3.*", "setuptools>=40.8.0", "wheel"]
33
build-backend = "setuptools.build_meta"

advanced/kernel-messaging/setup.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from jupyter_packaging import (
88
create_cmdclass, install_npm, ensure_targets,
9-
combine_commands, get_version,
9+
combine_commands, skip_if_exists
1010
)
1111
import setuptools
1212

@@ -23,7 +23,6 @@
2323

2424
# Representative files that should exist after a successful build
2525
jstargets = [
26-
os.path.join(HERE, "lib", "index.js"),
2726
os.path.join(lab_path, "package.json"),
2827
]
2928

@@ -45,11 +44,17 @@
4544
data_files_spec=data_files_spec
4645
)
4746

48-
cmdclass["jsdeps"] = combine_commands(
47+
js_command = combine_commands(
4948
install_npm(HERE, build_cmd="build:prod", npm=["jlpm"]),
5049
ensure_targets(jstargets),
5150
)
5251

52+
is_repo = os.path.exists(os.path.join(HERE, ".git"))
53+
if is_repo:
54+
cmdclass["jsdeps"] = js_command
55+
else:
56+
cmdclass["jsdeps"] = skip_if_exists(jstargets, js_command)
57+
5358
with open("README.md", "r") as fh:
5459
long_description = fh.read()
5560

@@ -64,14 +69,14 @@
6469
cmdclass= cmdclass,
6570
packages=setuptools.find_packages(),
6671
install_requires=[
67-
"jupyterlab>=3.0.0rc2,==3.*",
72+
"jupyterlab>=3.0.0rc15,==3.*",
6873
],
6974
zip_safe=False,
7075
include_package_data=True,
7176
python_requires=">=3.6",
7277
license="BSD-3-Clause",
7378
platforms="Linux, Mac OS X, Windows",
74-
keywords=["Jupyter", "JupyterLab"],
79+
keywords=["Jupyter", "JupyterLab", "JupyterLab3"],
7580
classifiers=[
7681
"License :: OSI Approved :: BSD License",
7782
"Programming Language :: Python",

advanced/kernel-messaging/style/base.css

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import './base.css';

advanced/kernel-output/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -44,18 +44,18 @@
4444
"watch:src": "tsc -w"
4545
},
4646
"dependencies": {
47-
"@jupyterlab/application": "^3.0.0-rc.7",
48-
"@jupyterlab/launcher": "^3.0.0-rc.7",
49-
"@jupyterlab/mainmenu": "^3.0.0-rc.7",
50-
"@jupyterlab/outputarea": "^3.0.0-rc.7",
51-
"@jupyterlab/translation": "^3.0.0-rc.7",
47+
"@jupyterlab/application": "^3.0.0-rc.15",
48+
"@jupyterlab/launcher": "^3.0.0-rc.15",
49+
"@jupyterlab/mainmenu": "^3.0.0-rc.15",
50+
"@jupyterlab/outputarea": "^3.0.0-rc.15",
51+
"@jupyterlab/translation": "^3.0.0-rc.15",
5252
"@lumino/algorithm": "^1.3.3",
5353
"@lumino/coreutils": "^1.5.3",
5454
"@lumino/datagrid": "^0.3.1",
5555
"@lumino/disposable": "^1.4.3"
5656
},
5757
"devDependencies": {
58-
"@jupyterlab/builder": "^3.0.0-rc.7",
58+
"@jupyterlab/builder": "^3.0.0-rc.15",
5959
"@typescript-eslint/eslint-plugin": "^2.27.0",
6060
"@typescript-eslint/parser": "^2.27.0",
6161
"eslint": "^7.5.0",
@@ -66,7 +66,7 @@
6666
"npm-run-all": "^4.1.5",
6767
"prettier": "^1.19.0",
6868
"rimraf": "^3.0.2",
69-
"typescript": "~4.0.3"
69+
"typescript": "~4.1.3"
7070
},
7171
"sideEffects": [
7272
"style/*.css"

advanced/kernel-output/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[build-system]
2-
requires = ["jupyter_packaging~=0.7.0", "jupyterlab>=3.0.0rc2,==3.*", "setuptools>=40.8.0", "wheel"]
2+
requires = ["jupyter_packaging~=0.7.9", "jupyterlab>=3.0.0rc15,==3.*", "setuptools>=40.8.0", "wheel"]
33
build-backend = "setuptools.build_meta"

advanced/kernel-output/setup.py

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
from jupyter_packaging import (
88
create_cmdclass, install_npm, ensure_targets,
9-
combine_commands, get_version,
9+
combine_commands, skip_if_exists
1010
)
1111
import setuptools
1212

@@ -23,7 +23,6 @@
2323

2424
# Representative files that should exist after a successful build
2525
jstargets = [
26-
os.path.join(HERE, "lib", "index.js"),
2726
os.path.join(lab_path, "package.json"),
2827
]
2928

@@ -45,11 +44,17 @@
4544
data_files_spec=data_files_spec
4645
)
4746

48-
cmdclass["jsdeps"] = combine_commands(
47+
js_command = combine_commands(
4948
install_npm(HERE, build_cmd="build:prod", npm=["jlpm"]),
5049
ensure_targets(jstargets),
5150
)
5251

52+
is_repo = os.path.exists(os.path.join(HERE, ".git"))
53+
if is_repo:
54+
cmdclass["jsdeps"] = js_command
55+
else:
56+
cmdclass["jsdeps"] = skip_if_exists(jstargets, js_command)
57+
5358
with open("README.md", "r") as fh:
5459
long_description = fh.read()
5560

@@ -64,14 +69,14 @@
6469
cmdclass= cmdclass,
6570
packages=setuptools.find_packages(),
6671
install_requires=[
67-
"jupyterlab>=3.0.0rc2,==3.*",
72+
"jupyterlab>=3.0.0rc15,==3.*",
6873
],
6974
zip_safe=False,
7075
include_package_data=True,
7176
python_requires=">=3.6",
7277
license="BSD-3-Clause",
7378
platforms="Linux, Mac OS X, Windows",
74-
keywords=["Jupyter", "JupyterLab"],
79+
keywords=["Jupyter", "JupyterLab", "JupyterLab3"],
7580
classifiers=[
7681
"License :: OSI Approved :: BSD License",
7782
"Programming Language :: Python",

advanced/kernel-output/style/base.css

Whitespace-only changes.

advanced/kernel-output/style/index.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
import './base.css';

0 commit comments

Comments
 (0)