From 9acaf0b516fc7142d105b78613658983b3901fb6 Mon Sep 17 00:00:00 2001 From: RalfG Date: Tue, 9 Jul 2024 15:42:28 +0200 Subject: [PATCH] Apply only-binary fix also in publish workflow (see commit 7744391) --- .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 a6a65b9e..1137ef58 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -29,7 +29,7 @@ jobs: - name: Test built package run: | - pip install dist/ms2rescore-*.whl + pip install --only-binary :all: dist/ms2rescore-*.whl # pytest ms2rescore --help @@ -54,7 +54,7 @@ jobs: - name: Install package and dependencies run: | python -m pip install --upgrade pip - pip install . pyinstaller + pip install --only-binary :all: . pyinstaller - name: Install Inno Setup uses: crazy-max/ghaction-chocolatey@v3