Skip to content

Commit 7b4415c

Browse files
authored
Add upper bound on jupyterlab<4.1 (#7249)
* Add upper bound on `jupyterlab<4.1` * typo fix
1 parent 99db942 commit 7b4415c

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/buildutils.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929

3030
- name: Install dependencies
3131
run: |
32-
python -m pip install -U "jupyterlab>=4.0.2,<5" hatch
32+
python -m pip install -U "jupyterlab>=4.0.2,<4.1" hatch
3333
jlpm
3434
jlpm run build
3535
@@ -79,6 +79,6 @@ jobs:
7979

8080
- name: Install dependencies
8181
run: |
82-
python -m pip install -U "jupyterlab>=4.0.2,<5" pip
82+
python -m pip install -U "jupyterlab>=4.0.2,<4.1" pip
8383
jlpm
8484
jlpm run build

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ repos:
5050
files: "^notebook"
5151
stages: [manual]
5252
args: ["--install-types", "--non-interactive"]
53-
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.0"]
53+
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.0,<4.1"]
5454

5555
- repo: https://github.com/pre-commit/pygrep-hooks
5656
rev: 'v1.10.0'

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["hatchling>=1.11", "jupyterlab>=4.0.2,<5"]
2+
requires = ["hatchling>=1.11", "jupyterlab>=4.0.2,<4.1"]
33
build-backend = "hatchling.build"
44

55
[project]
@@ -32,7 +32,7 @@ classifiers = [
3232
]
3333
dependencies = [
3434
"jupyter_server>=2.4.0,<3",
35-
"jupyterlab>=4.0.2,<5",
35+
"jupyterlab>=4.0.2,<4.1",
3636
"jupyterlab_server>=2.22.1,<3",
3737
"notebook_shim>=0.2,<0.3",
3838
"tornado>=6.2.0",

0 commit comments

Comments
 (0)