From f4e89e1d2f73416e469f09dc4cf40c9816b3330c Mon Sep 17 00:00:00 2001 From: Thomas Bonald Date: Thu, 30 Mar 2023 08:13:39 +0200 Subject: [PATCH] Update pip install for wheels --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4bc5dac4..e7b35cf2 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,8 +26,8 @@ jobs: CIBW_SKIP: cp*-musllinux* CIBW_ARCHS_MACOS: x86_64 arm64 CIBW_BUILD_VERBOSITY: 3 - CIBW_BEFORE_BUILD: "pip install -r requirements_dev.txt --user && pip install ." - CIBW_BEFORE_BUILD_MACOS: "pip install -r requirements_dev.txt --user && pip install ." + CIBW_BEFORE_BUILD: "pip install -r requirements_dev.txt && pip install ." + CIBW_BEFORE_BUILD_MACOS: "pip install -r requirements_dev.txt && pip install ." CIBW_BUILD: cp38-* cp39-* cp310-* - uses: actions/upload-artifact@v2