Skip to content

Commit a0f4610

Browse files
committed
Use "dependency_type: minimum" for Minimum Versions check
1 parent 6a33bb8 commit a0f4610

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/test.yml

+5-3
Original file line numberDiff line numberDiff line change
@@ -152,10 +152,12 @@ jobs:
152152
- name: Base Setup
153153
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
154154
with:
155-
python_version: "3.11"
155+
python_version: "3.8"
156+
dependency_type: minimum
156157

157-
- name: Install minimum versions
158-
uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
158+
- name: Install the Python dependencies
159+
run: |
160+
pip install -e ".[test]"
159161
160162
- name: Run the unit tests
161163
run: |

pyproject.toml

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ classifiers = [
2727
"Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt",
2828
]
2929
dependencies = [
30-
"jupyter_server>=2.0.0,<3.0.0",
30+
"jupyter_server>=2.4.0,<3.0.0",
3131
"jupyter_ydoc>=2.0.0,<3.0.0",
3232
"pycrdt-websocket>=0.12.5,<0.13.0",
3333
"jupyter_events>=0.10.0",
@@ -44,12 +44,12 @@ dev = [
4444
]
4545
test = [
4646
"coverage",
47-
"jupyter_server[test]>=2.0.0",
47+
"jupyter_server[test]>=2.4.0",
4848
"jupyter_server_fileid[test]",
4949
"pytest>=7.0",
5050
"pytest-cov",
5151
"websockets",
52-
"importlib_metadata >=3.6; python_version<'3.10'",
52+
"importlib_metadata >=4.8.3; python_version<'3.10'",
5353
]
5454
docs = [
5555
"jupyterlab>=4.0.0",

0 commit comments

Comments
 (0)