Skip to content

Commit

Permalink
Merge pull request macauff#65 from hombit/cibuildwheel
Browse files Browse the repository at this point in the history
cibuildwheel for wheel building
  • Loading branch information
Onoddil authored Oct 12, 2023
2 parents 8f11c94 + 80ca041 commit 8f63fec
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 1 deletion.
59 changes: 59 additions & 0 deletions .github/workflows/python-wheels.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Build and publish wheels

on:
push:
pull_request:
workflow_dispatch:

jobs:
build_wheels:
name: Wheels on ${{ matrix.os }} with CIBW_ARCHS=${{ matrix.archs }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
# Numpy provides wheels for x86_64 and aarch64 only, we do the same
- os: ubuntu-latest
archs: x86_64 aarch64
# macOS and Windows are not supported yet
steps:
- uses: actions/checkout@v3
- name: Set up QEMU
if: ${{ runner.os == 'Linux' }}
uses: docker/setup-qemu-action@v2
with:
platforms: all
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS: ${{ matrix.archs }}
- uses: actions/upload-artifact@v3
with:
path: wheelhouse/*.whl

make_sdist:
name: Make SDist
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build SDist
run: pipx run build --sdist
- uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz

publish:
needs: [ build_wheels, make_sdist ]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
with:
name: artifact
path: dist
# Publish only on new "v*" tags
- uses: pypa/gh-action-pypi-publish@release/v1
if: startsWith(github.ref, 'refs/tags/v')
with:
user: __token__
password: ${{ secrets.PYPI_API_TOKEN }}
11 changes: 10 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@ build-backend = "setuptools.build_meta"
name = "macauff"
version = "0.1.0"
readme = "README.md"
requires-python = ">=3.8"
# 3.12 has removed distutils
requires-python = ">=3.8,<3.12"
dependencies = [
"astropy",
"matplotlib",
Expand All @@ -26,3 +27,11 @@ docs = [
"sphinx-fortran",
"six",
]

[tool.cibuildwheel]
build-frontend = "build"
config-settings = { "build-args" = "--full-build" }
skip = [
"*musl*", # we don't support MUSL Linux
"pp*", # we don't support PyPy
]

0 comments on commit 8f63fec

Please sign in to comment.