pygambit wheels #4
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: pygambit wheels | |
on: | |
push: | |
tags: | |
- 'v*' | |
schedule: | |
- cron: '0 6 * * 4' | |
jobs: | |
windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.x' | |
- name: Set up dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install cython nose2 wheel lxml numpy scipy cibuildwheel | |
- name: Build wheels | |
run: | | |
python -m cibuildwheel --output-dir wheelhouse/ | |
env: | |
CIBW_SKIP: "pp*" | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: ./wheelhouse/*.whl |