Skip to content

Commit 697ad67

Browse files
author
Steven Silvester
committed
run upgrade script
1 parent 37946da commit 697ad67

Some content is hidden

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

51 files changed

+143
-177
lines changed

advanced/kernel-messaging/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,18 +42,18 @@
4242
"watch:src": "tsc -w"
4343
},
4444
"dependencies": {
45-
"@jupyterlab/application": "~3.0.0-beta.3",
46-
"@jupyterlab/launcher": "~3.0.0-beta.3",
47-
"@jupyterlab/mainmenu": "~3.0.0-beta.3",
48-
"@jupyterlab/nbformat": "~3.0.0-beta.3",
45+
"@jupyterlab/application": "~3.0.0-beta.4",
46+
"@jupyterlab/launcher": "~3.0.0-beta.4",
47+
"@jupyterlab/mainmenu": "~3.0.0-beta.4",
48+
"@jupyterlab/nbformat": "~3.0.0-beta.4",
4949
"@lumino/algorithm": "^1.3.3",
5050
"@lumino/coreutils": "^1.5.3",
5151
"@lumino/datagrid": "^0.5.2",
5252
"@lumino/disposable": "^1.4.3",
5353
"@lumino/widgets": "^1.14.0"
5454
},
5555
"devDependencies": {
56-
"@jupyterlab/builder": "^3.0.0-beta.3",
56+
"@jupyterlab/builder": "^3.0.0-beta.4",
5757
"@typescript-eslint/eslint-plugin": "^2.27.0",
5858
"@typescript-eslint/parser": "^2.27.0",
5959
"eslint": "^7.5.0",
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.6.0", "jupyterlab~=3.0.0b3", "setuptools>=40.8.0", "wheel"]
2+
requires = ["jupyter_packaging~=0.7.0", "jupyterlab~=3.0.0b4", "setuptools>=40.8.0", "wheel"]
33
build-backend = "setuptools.build_meta"

advanced/kernel-messaging/setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from jupyter_packaging import (
77
create_cmdclass, install_npm, ensure_targets,
8-
combine_commands, ensure_python, get_version,
8+
combine_commands, get_version,
99
)
1010
import setuptools
1111

@@ -14,9 +14,6 @@
1414
# The name of the project
1515
name="jupyterlab_examples_kernel_messaging"
1616

17-
# Ensure a valid python version
18-
ensure_python(">=3.6")
19-
2017
# Get our version
2118
version = get_version(os.path.join(name, "_version.py"))
2219

@@ -64,10 +61,11 @@
6461
cmdclass= cmdclass,
6562
packages=setuptools.find_packages(),
6663
install_requires=[
67-
"jupyterlab~=3.0.0b3",
64+
"jupyterlab~=3.0.0b4",
6865
],
6966
zip_safe=False,
7067
include_package_data=True,
68+
python_requires=">=3.6",
7169
license="BSD-3-Clause",
7270
platforms="Linux, Mac OS X, Windows",
7371
keywords=["Jupyter", "JupyterLab"],

advanced/kernel-output/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,17 +42,17 @@
4242
"watch:src": "tsc -w"
4343
},
4444
"dependencies": {
45-
"@jupyterlab/application": "~3.0.0-beta.3",
46-
"@jupyterlab/launcher": "~3.0.0-beta.3",
47-
"@jupyterlab/mainmenu": "~3.0.0-beta.3",
48-
"@jupyterlab/outputarea": "~3.0.0-beta.3",
45+
"@jupyterlab/application": "~3.0.0-beta.4",
46+
"@jupyterlab/launcher": "~3.0.0-beta.4",
47+
"@jupyterlab/mainmenu": "~3.0.0-beta.4",
48+
"@jupyterlab/outputarea": "~3.0.0-beta.4",
4949
"@lumino/algorithm": "^1.3.3",
5050
"@lumino/coreutils": "^1.5.3",
5151
"@lumino/datagrid": "^0.3.1",
5252
"@lumino/disposable": "^1.4.3"
5353
},
5454
"devDependencies": {
55-
"@jupyterlab/builder": "^3.0.0-beta.3",
55+
"@jupyterlab/builder": "^3.0.0-beta.4",
5656
"@typescript-eslint/eslint-plugin": "^2.27.0",
5757
"@typescript-eslint/parser": "^2.27.0",
5858
"eslint": "^7.5.0",

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.6.0", "jupyterlab~=3.0.0b3", "setuptools>=40.8.0", "wheel"]
2+
requires = ["jupyter_packaging~=0.7.0", "jupyterlab~=3.0.0b4", "setuptools>=40.8.0", "wheel"]
33
build-backend = "setuptools.build_meta"

advanced/kernel-output/setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from jupyter_packaging import (
77
create_cmdclass, install_npm, ensure_targets,
8-
combine_commands, ensure_python, get_version,
8+
combine_commands, get_version,
99
)
1010
import setuptools
1111

@@ -14,9 +14,6 @@
1414
# The name of the project
1515
name="jupyterlab_examples_kernel_output"
1616

17-
# Ensure a valid python version
18-
ensure_python(">=3.6")
19-
2017
# Get our version
2118
version = get_version(os.path.join(name, "_version.py"))
2219

@@ -64,10 +61,11 @@
6461
cmdclass= cmdclass,
6562
packages=setuptools.find_packages(),
6663
install_requires=[
67-
"jupyterlab~=3.0.0b3",
64+
"jupyterlab~=3.0.0b4",
6865
],
6966
zip_safe=False,
7067
include_package_data=True,
68+
python_requires=">=3.6",
7169
license="BSD-3-Clause",
7270
platforms="Linux, Mac OS X, Windows",
7371
keywords=["Jupyter", "JupyterLab"],

advanced/server-extension/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -42,13 +42,13 @@
4242
"watch:src": "tsc -w"
4343
},
4444
"dependencies": {
45-
"@jupyterlab/application": "~3.0.0-beta.3",
46-
"@jupyterlab/coreutils": "~5.0.0-beta.3",
47-
"@jupyterlab/launcher": "~3.0.0-beta.3",
48-
"@jupyterlab/services": "~6.0.0-beta.3"
45+
"@jupyterlab/application": "~3.0.0-beta.4",
46+
"@jupyterlab/coreutils": "~5.0.0-beta.4",
47+
"@jupyterlab/launcher": "~3.0.0-beta.4",
48+
"@jupyterlab/services": "~6.0.0-beta.4"
4949
},
5050
"devDependencies": {
51-
"@jupyterlab/builder": "^3.0.0-beta.3",
51+
"@jupyterlab/builder": "^3.0.0-beta.4",
5252
"@typescript-eslint/eslint-plugin": "^2.27.0",
5353
"@typescript-eslint/parser": "^2.27.0",
5454
"eslint": "^7.5.0",
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.6.0", "jupyterlab~=3.0.0b3", "setuptools>=40.8.0", "wheel"]
2+
requires = ["jupyter_packaging~=0.7.0", "jupyterlab~=3.0.0b4", "setuptools>=40.8.0", "wheel"]
33
build-backend = "setuptools.build_meta"

advanced/server-extension/setup.py

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
from jupyter_packaging import (
77
create_cmdclass, install_npm, ensure_targets,
8-
combine_commands, ensure_python, get_version,
8+
combine_commands, get_version,
99
)
1010
import setuptools
1111

@@ -14,9 +14,6 @@
1414
# The name of the project
1515
name="jlab_ext_example"
1616

17-
# Ensure a valid python version
18-
ensure_python(">=3.6")
19-
2017
# Get our version
2118
version = get_version(os.path.join(name, "_version.py"))
2219

@@ -66,10 +63,11 @@
6663
cmdclass= cmdclass,
6764
packages=setuptools.find_packages(),
6865
install_requires=[
69-
"jupyterlab~=3.0.0b3",
66+
"jupyterlab~=3.0.0b4",
7067
],
7168
zip_safe=False,
7269
include_package_data=True,
70+
python_requires=">=3.6",
7371
license="BSD-3-Clause",
7472
platforms="Linux, Mac OS X, Windows",
7573
keywords=["Jupyter", "JupyterLab"],

basics/datagrid/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,15 +42,15 @@
4242
"watch:src": "tsc -w"
4343
},
4444
"dependencies": {
45-
"@jupyterlab/application": "~3.0.0-beta.3",
46-
"@jupyterlab/mainmenu": "~3.0.0-beta.3",
45+
"@jupyterlab/application": "~3.0.0-beta.4",
46+
"@jupyterlab/mainmenu": "~3.0.0-beta.4",
4747
"@lumino/algorithm": "^1.3.3",
4848
"@lumino/coreutils": "^1.5.3",
4949
"@lumino/datagrid": "^0.5.2",
5050
"@lumino/disposable": "^1.4.3"
5151
},
5252
"devDependencies": {
53-
"@jupyterlab/builder": "^3.0.0-beta.3",
53+
"@jupyterlab/builder": "^3.0.0-beta.4",
5454
"@typescript-eslint/eslint-plugin": "^2.27.0",
5555
"@typescript-eslint/parser": "^2.27.0",
5656
"eslint": "^7.5.0",

0 commit comments

Comments
 (0)