Skip to content

Commit 7d18873

Browse files
Require jupyterlab>=4.1.2 for arrow key compatibility (#92)
Co-authored-by: Frédéric Collonval <fcollonval@gmail.com>
1 parent a2ce292 commit 7d18873

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ RISE: "Live" Reveal.js JupyterLab Slideshow extension.
66

77
## Requirements
88

9-
- JupyterLab >= 4.0.0
9+
- JupyterLab >= 4.1.2
1010

1111
## Install
1212

binder/environment.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ channels:
1111

1212
dependencies:
1313
# runtime dependencies
14-
- jupyterlab >=4,<5.0.0a0
14+
- jupyterlab >=4.1.2,<5.0.0a0
1515
# labextension build dependencies
1616
- nodejs >=18,<19
1717
- pip

pyproject.toml

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version>=0.3.2"]
2+
requires = ["hatchling>=1.5.0", "jupyterlab>=4.1.0,<5", "hatch-nodejs-version>=0.3.2"]
33
build-backend = "hatchling.build"
44

55
[project]
@@ -19,7 +19,8 @@ classifiers = [
1919
]
2020
dependencies = [
2121
"jupyter_server>=2.0.1,<3",
22-
"jupyterlab-mathjax3"
22+
"jupyterlab>=4.1.0,<5",
23+
"jupyterlab-mathjax3",
2324
]
2425
dynamic = ["version", "description", "authors", "urls", "keywords"]
2526

@@ -77,11 +78,11 @@ version-cmd = "python scripts/bump_version.py --force"
7778

7879
[tool.jupyter-releaser.hooks]
7980
before-bump-version = [
80-
"python -m pip install 'jupyterlab>=4.0.0,<5'",
81+
"python -m pip install 'jupyterlab>=4.1.2,<5'",
8182
"jlpm"
8283
]
8384
before-build-npm = [
84-
"python -m pip install 'jupyterlab>=4.0.0,<5'",
85+
"python -m pip install 'jupyterlab>=4.1.2,<5'",
8586
"jlpm",
8687
"jlpm build:prod"
8788
]

0 commit comments

Comments
 (0)