Add upper bound on `jupyterlab<4.1` (#7249)

* Add upper bound on `jupyterlab<4.1`

* typo fix
7.0.x
Jeremy Tuloup 2 years ago committed by GitHub
parent 99db9423e3
commit 7b4415ca64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U "jupyterlab>=4.0.2,<5" hatch
python -m pip install -U "jupyterlab>=4.0.2,<4.1" hatch
jlpm
jlpm run build
@ -79,6 +79,6 @@ jobs:
- name: Install dependencies
run: |
python -m pip install -U "jupyterlab>=4.0.2,<5" pip
python -m pip install -U "jupyterlab>=4.0.2,<4.1" pip
jlpm
jlpm run build

@ -50,7 +50,7 @@ repos:
files: "^notebook"
stages: [manual]
args: ["--install-types", "--non-interactive"]
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.0"]
additional_dependencies: ["traitlets>=5.13", "tornado", "jupyter_server>=2.10", "jupyterlab_server>=2.25", "jupyterlab>=4.0,<4.1"]
- repo: https://github.com/pre-commit/pygrep-hooks
rev: 'v1.10.0'

@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=1.11", "jupyterlab>=4.0.2,<5"]
requires = ["hatchling>=1.11", "jupyterlab>=4.0.2,<4.1"]
build-backend = "hatchling.build"
[project]
@ -32,7 +32,7 @@ classifiers = [
]
dependencies = [
"jupyter_server>=2.4.0,<3",
"jupyterlab>=4.0.2,<5",
"jupyterlab>=4.0.2,<4.1",
"jupyterlab_server>=2.22.1,<3",
"notebook_shim>=0.2,<0.3",
"tornado>=6.2.0",

Loading…
Cancel
Save