Skip to content

Update the version number to 1.1.5 #40

Update the version number to 1.1.5

Update the version number to 1.1.5 #40

Workflow file for this run

name: Wheels
on:
push:
branches:
- 'releases/**'
tags:
- v*
jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macOS-latest]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: true
# Used to host cibuildwheel
- uses: actions/setup-python@v4
with:
python-version: "3.x"
- name: Build wheels
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_SKIP: cp36-* cp37-* pp* cp312-*i686*
- uses: actions/upload-artifact@v3
with:
path: ./wheelhouse/*.whl