Skip to content

2.X fix dtype

2.X fix dtype #18

Workflow file for this run

name: Build wheels
on: [push, pull_request]
jobs:
build_wheels_linux_x86_64:
name: Build x86_64 wheels on ubuntu-22.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS_LINUX: x86_64
- uses: actions/upload-artifact@v3
with:
name: dist
path: ./wheelhouse/*.whl
build_wheels_macos_x86_64:
name: Build x86_64 wheels on macos-12
runs-on: macos-12
steps:
- uses: actions/checkout@v3
- name: Build wheels
uses: pypa/[email protected]
env:
CIBW_ARCHS_MACOS: x86_64
- uses: actions/upload-artifact@v3
with:
name: dist
path: ./wheelhouse/*.whl
build_sdist:
name: Build sdist
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: '3.11'
- name: Set up requirements and configuration variables
run: |
sudo apt-get update
sudo apt-get install build-essential cmake
pip install --upgrade pip wheel build
- name: make
shell: bash
run: |
python -m build
- name: upload sdist
if: always()
uses: actions/upload-artifact@v3
with:
name: dist
path: dist/*.tar.gz