From 08697b09905c0e60009d2f78a21cbf4c8963d553 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 22 Nov 2022 11:17:20 -0600 Subject: [PATCH] Use base setup dependency type (#1084) --- .github/workflows/python-tests.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index 6049d069f4..bb6145f534 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -90,10 +90,7 @@ jobs: - uses: actions/checkout@v3 - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: - python_version: "3.8" - - uses: jupyterlab/maintainer-tools/.github/actions/install-minimums@v1 - with: - only_create_file: 1 + dependency_type: minimum - name: Run the unit tests run: | hatch run test:nowarn || hatch run test:nowarn --lf @@ -106,10 +103,10 @@ jobs: - uses: actions/checkout@v3 - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 with: - python_version: "3.11" + dependency_type: pre - name: Run the tests run: | - PIP_PRE=1 hatch run test:nowarn || hatch run test:nowarn --lf + hatch run test:nowarn || hatch run test:nowarn --lf make_sdist: name: Make SDist