From 6e518962bd9f050318bfaf332070e867167e9502 Mon Sep 17 00:00:00 2001 From: RalfG Date: Wed, 1 May 2024 15:12:42 +0200 Subject: [PATCH] Fix publish workflow --- .github/workflows/publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 4bd65db..6b5e117 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -24,13 +24,13 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install build + pip install build pytest - name: Build run: python -m build --sdist --wheel . - name: Install wheel - run: pip install dist/psm_utils-*.whl[dev] + run: pip install dist/psm_utils-*.whl - name: Test wheel run: |