A curve along Z, always nice to have and can be displaced to perturb … #5904
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Wheel Builder | |
on: [push, pull_request] | |
jobs: | |
build_wheels: | |
name: Build wheels on ${{ matrix.os }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-12, ubuntu-20.04] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch all history for all tags | |
run: git fetch --prune --unshallow | |
- name: Build wheels | |
uses: pypa/[email protected] | |
# To supply options, put them in 'env' | |
env: | |
# Only build for python 3.{8,9,10,11} | |
CIBW_BUILD : cp38-* cp39-* cp310-* cp311-* | |
# Supports only x86_64 arch for linux | |
CIBW_ARCHS_LINUX: x86_64 | |
CIBW_ARCHS_MACOS: "x86_64 arm64" | |
CIBW_SKIP: cp27-* cp36-* cp37-* | |
CIBW_DEPENDENCY_VERSIONS: latest | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: ./wheelhouse/*.whl | |
build_sdist: | |
name: Build source distribution | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Fetch all history for all tags | |
run: git fetch --prune --unshallow | |
- uses: actions/setup-python@v5 | |
name: Install Python | |
with: | |
python-version: '3.9' | |
- name: Download all submodules | |
run: git submodule update --init | |
- name: Install setuptools_scm | |
run: python -m pip install setuptools_scm build | |
- name: Build sdist | |
run: python -m build -s -o dist . | |
- uses: actions/upload-artifact@v3 | |
with: | |
path: dist/*.tar.gz | |
upload_pypi: | |
needs: [build_wheels, build_sdist] | |
runs-on: ubuntu-latest | |
# upload to PyPI on every tag starting with 'v' | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/v') | |
# alternatively, to publish when a GitHub Release is created, use the following rule: | |
# if: github.event_name == 'release' && github.event.action == 'published' | |
steps: | |
- uses: actions/[email protected] | |
with: | |
name: artifact | |
path: dist | |
- uses: pypa/gh-action-pypi-publish@release/v1 | |
with: | |
user: __token__ | |
password: ${{ secrets.PYPI_TOKEN }} | |
#password: ${{ secrets.TEST_PYPI_TOKEN }} | |
#repository_url: https://test.pypi.org/legacy/ |