Skip to content

Commit

Permalink
Require jupyterlab>=4.1.2 for arrow key compatibility (#92)
Browse files Browse the repository at this point in the history
Co-authored-by: Frédéric Collonval <[email protected]>
  • Loading branch information
briank-git and fcollonval authored Dec 30, 2024
1 parent a2ce292 commit 7d18873
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ RISE: "Live" Reveal.js JupyterLab Slideshow extension.

## Requirements

- JupyterLab >= 4.0.0
- JupyterLab >= 4.1.2

## Install

Expand Down
2 changes: 1 addition & 1 deletion binder/environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ channels:

dependencies:
# runtime dependencies
- jupyterlab >=4,<5.0.0a0
- jupyterlab >=4.1.2,<5.0.0a0
# labextension build dependencies
- nodejs >=18,<19
- pip
Expand Down
9 changes: 5 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["hatchling>=1.5.0", "jupyterlab>=4.0.0,<5", "hatch-nodejs-version>=0.3.2"]
requires = ["hatchling>=1.5.0", "jupyterlab>=4.1.0,<5", "hatch-nodejs-version>=0.3.2"]
build-backend = "hatchling.build"

[project]
Expand All @@ -19,7 +19,8 @@ classifiers = [
]
dependencies = [
"jupyter_server>=2.0.1,<3",
"jupyterlab-mathjax3"
"jupyterlab>=4.1.0,<5",
"jupyterlab-mathjax3",
]
dynamic = ["version", "description", "authors", "urls", "keywords"]

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

[tool.jupyter-releaser.hooks]
before-bump-version = [
"python -m pip install 'jupyterlab>=4.0.0,<5'",
"python -m pip install 'jupyterlab>=4.1.2,<5'",
"jlpm"
]
before-build-npm = [
"python -m pip install 'jupyterlab>=4.0.0,<5'",
"python -m pip install 'jupyterlab>=4.1.2,<5'",
"jlpm",
"jlpm build:prod"
]
Expand Down

0 comments on commit 7d18873

Please sign in to comment.