Skip to content

Commit

Permalink
Fix build scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
aMarcireau committed Nov 6, 2023
1 parent 77f16ac commit ed1f4a5
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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
Expand All @@ -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:
Expand Down

0 comments on commit ed1f4a5

Please sign in to comment.