Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ jobs:

- name: Base Setup
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
with:
dependency_type: minimum

- name: debug
run: |
pip install -ve ".[dev,test]"

- name: Test the package
run: hatch run cov:test
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ classifiers = [
dependencies = [
"jupyter_server>=2.4.0,<3",
"jupyterlab>=4.2.0a2,<4.3",
"jupyterlab_server>=2.22.1,<3",
"jupyterlab_server>=2.25.4,<3",
"notebook_shim>=0.2,<0.3",
"tornado>=6.2.0",
]
Expand All @@ -56,9 +56,9 @@ test = [
"pytest-tornasync",
"pytest-timeout",
"pytest-console-scripts",
"ipykernel",
"ipykernel>=6.5.0",
"jupyter_server[test]>=2.4.0,<3",
"jupyterlab_server[test]>=2.22.1,<3",
"jupyterlab_server[test]>=2.25.4,<3",
"importlib-resources>=5.0;python_version<\"3.10\"",
]
docs = [
Expand Down Expand Up @@ -175,7 +175,7 @@ version-cmd = "jlpm run release:bump --force --skip-commit"

[tool.jupyter-releaser.hooks]
before-bump-version = [
"python -m pip install -U jupyterlab~=4.1.1",
"python -m pip install -U \"jupyterlab>=4.2.0a2,<4.3\"",
"jlpm",
"jlpm run build:utils",
"python -m pip install hatch"
Expand Down