Skip to content

Update readme

Update readme #26

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.9]
#if: startsWith(github.event.head_commit.message, 'Release')
steps:
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install cffi>=1.0 wheel
- name: Build Wheels
env:
CIBW_ARCHS: "auto64"
CIBW_SKIP: "cp36-* cp37-* cp312-*"
run: |
python -m pip install cibuildwheel
python -m cibuildwheel --output-dir wheelhouse
- name: Save Wheels
uses: actions/upload-artifact@v2
with:
name: wheels
path: ./wheelhouse/*.whl