Skip to content

Commit 3f6de1c

Browse files
committed
Unpin <=3.6.4 and use <4 instead
Signed-off-by: Jay Wang <[email protected]>
1 parent 14a8036 commit 3f6de1c

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

.github/workflows/build.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,6 @@ jobs:
9090
sudo rm -rf $(which node)
9191
sudo rm -rf $(which node)
9292
pip install myextension.tar.gz
93-
pip install "jupyterlab<=3.6.4"
93+
pip install "jupyterlab<4"
9494
python -m jupyterlab.browser_check --no-chrome-test
9595
jupyter labextension list 2>&1 | grep -ie "jupyterlab-stickyland.*OK"

pyproject.toml

+11-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,13 @@
11
[build-system]
2-
requires = ["jupyter_packaging~=0.10,<2", "jupyterlab<=3.6.4"]
2+
requires = ["jupyter_packaging~=0.10,<2", "jupyterlab<4"]
33
build-backend = "jupyter_packaging.build_api"
44

55
[tool.jupyter-packaging.options]
66
skip-if-exists = ["jupyterlab_stickyland/labextension/static/style.js"]
7-
ensured-targets = ["jupyterlab_stickyland/labextension/static/style.js", "jupyterlab_stickyland/labextension/package.json"]
7+
ensured-targets = [
8+
"jupyterlab_stickyland/labextension/static/style.js",
9+
"jupyterlab_stickyland/labextension/package.json",
10+
]
811

912
[tool.jupyter-packaging.builder]
1013
factory = "jupyter_packaging.npm_builder"
@@ -14,4 +17,9 @@ build_cmd = "build:prod"
1417
npm = ["jlpm"]
1518

1619
[tool.check-manifest]
17-
ignore = ["jupyterlab_stickyland/labextension/**", "yarn.lock", ".*", "package-lock.json"]
20+
ignore = [
21+
"jupyterlab_stickyland/labextension/**",
22+
"yarn.lock",
23+
".*",
24+
"package-lock.json",
25+
]

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
long_description=long_description,
5252
long_description_content_type="text/markdown",
5353
packages=setuptools.find_packages(),
54-
install_requires=["jupyterlab<=3.6.4"],
54+
install_requires=["jupyterlab<4"],
5555
zip_safe=False,
5656
include_package_data=True,
5757
python_requires=">=3.6",

0 commit comments

Comments
 (0)