Skip to content

Commit 621cbba

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

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

.github/workflows/test.yml

Lines changed: 5 additions & 3 deletions
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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ 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)