Skip to content

Commit 4915fc8

Browse files
authored
Merge pull request #184 from blink1073/update-min-deps-test
Fix min dep test
2 parents c7450ea + ab3c315 commit 4915fc8

File tree

2 files changed

+6
-7
lines changed

2 files changed

+6
-7
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,10 @@ jobs:
5757
- name: Base Setup
5858
uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1
5959
with:
60-
python_version: "3.8"
61-
- name: Install miniumum versions
62-
uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1
60+
dependency_type: minimum
6361
- name: Run the unit tests
6462
run: |
63+
python -m pip install ".[test]"
6564
python -m pytest -vv || python -m pytest -vv --lf
6665
6766
test_prereleases:

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@ classifiers = [
1919
]
2020
requires-python = ">=3.8"
2121
dependencies = [
22-
"packaging",
23-
"tomlkit",
22+
"packaging>=22.0",
23+
"tomlkit>=0.12.1",
2424
"setuptools>=60.2.0",
25-
"wheel",
26-
"deprecation",
25+
"wheel>=0.41.1",
26+
"deprecation>=2.1.0",
2727
]
2828

2929
[project.readme]

0 commit comments

Comments
 (0)