From ed1f4a5d3bcb6b7f6399f901b5834037de711d78 Mon Sep 17 00:00:00 2001 From: Alexandre Marcireau Date: Mon, 6 Nov 2023 15:09:07 +1100 Subject: [PATCH] Fix build scripts --- .github/workflows/build_wheels.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/build_wheels.yml b/.github/workflows/build_wheels.yml index 175a155..147c200 100644 --- a/.github/workflows/build_wheels.yml +++ b/.github/workflows/build_wheels.yml @@ -11,7 +11,7 @@ on: env: CIBW_ARCHS_MACOS: x86_64 arm64 CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x - CIBW_SKIP: cp36-* cp37-* cp38-* pp* cp*-musllinux_i686 + CIBW_SKIP: cp36-* cp37-* pp* *i686 jobs: build_wheels: @@ -69,10 +69,9 @@ jobs: with: name: wheelhouse path: wheelhouse - - run: python -m pip install wheelhouse/*.tar.gz + - run: python -m pip install --find-links wheelhouse charidotella shell: bash - - run: python -c 'import colourtime' - + - run: python -c 'import charidotella' build_sdist: name: Build source distribution runs-on: ubuntu-latest @@ -90,7 +89,7 @@ jobs: name: dist path: dist/*.tar.gz upload_pypi: - needs: [build_wheels, build_sdist] + needs: [build_wheels, import_library, build_sdist] runs-on: ubuntu-latest if: github.event_name == 'release' && github.event.action == 'published' steps: