From 9c9dd136053496a459e4e639ca3d5bc9c2d2a20c Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Tue, 22 Nov 2022 11:01:13 -0600 Subject: [PATCH] use base setup dependency type --- .github/workflows/main.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 15be65212..e9174cc84 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -92,10 +92,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 @@ -107,9 +104,11 @@ jobs: steps: - uses: actions/checkout@v3 - uses: jupyterlab/maintainer-tools/.github/actions/base-setup@v1 + with: + 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