Skip to content

Commit

Permalink
Add upper bound on jupyterlab<4.1 (#7249)
Browse files Browse the repository at this point in the history
* Add upper bound on `jupyterlab<4.1`

* typo fix
  • Loading branch information
jtpio committed Feb 9, 2024
1 parent 99db942 commit 7b4415c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/buildutils.yml
Expand Up @@ -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
Expand Down Expand Up @@ -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
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Expand Up @@ -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'
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
@@ -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]
Expand Down Expand Up @@ -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",
Expand Down

0 comments on commit 7b4415c

Please sign in to comment.