diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 65fcc46..2ec12cc 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,11 +57,10 @@ jobs: - name: Base Setup uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: - python_version: "3.8" - - name: Install miniumum versions - uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1 + dependency_type: minimum - name: Run the unit tests run: | + python -m pip install ".[test]" python -m pytest -vv || python -m pytest -vv --lf test_prereleases: diff --git a/pyproject.toml b/pyproject.toml index e765002..b6739fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,11 +19,11 @@ classifiers = [ ] requires-python = ">=3.8" dependencies = [ - "packaging", - "tomlkit", + "packaging>=22.0", + "tomlkit>=0.12.1", "setuptools>=60.2.0", - "wheel", - "deprecation", + "wheel>=0.41.1", + "deprecation>=2.1.0", ] [project.readme]