Skip to content

Commit 29ded07

Browse files
ci: update build
1 parent aa4a4ce commit 29ded07

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

.github/workflows/build_wheel.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ on:
66
tags:
77
- '*'
88
env:
9-
CIBW_SKIP: pp* *-musllinux*
9+
CIBW_SKIP: pp* *-musllinux* cp36* cp37*
1010

1111
jobs:
1212
build_wheels:
1313
name: Build wheels on ${{matrix.arch}} for ${{ matrix.os }}
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ubuntu-latest, windows-2019, macos-latest]
17+
os: [ubuntu-latest, windows-latest, macos-latest]
1818
arch: [auto]
1919
include:
2020
- os: ubuntu-latest
@@ -28,13 +28,16 @@ jobs:
2828
uses: docker/setup-qemu-action@v1
2929

3030
- name: Build wheels
31-
uses: joerick/cibuildwheel@v2.19.1
31+
uses: joerick/cibuildwheel@v2.22.0
3232
# to supply options, put them in 'env', like:
3333
env:
3434
CIBW_ARCHS_LINUX: ${{matrix.arch}}
3535
CIBW_BEFORE_BUILD: pip install numpy setuptools wheel cython
3636
CIBW_ARCHS_MACOS: "x86_64 arm64"
3737

38-
- uses: actions/upload-artifact@v2
38+
- name: Upload built wheels
39+
uses: actions/upload-artifact@v4
3940
with:
41+
name: built-wheels-${{ matrix.os }}-${{ matrix.arch }}
4042
path: ./wheelhouse/*.whl
43+
if-no-files-found: warn

fpzip.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ cimport numpy as numpy
1010

1111
import numpy as np
1212

13-
__VERSION__ = '1.2.3'
13+
__VERSION__ = '1.2.5'
1414
__version__ = __VERSION__
1515

1616
FPZ_ERROR_STRINGS = [

0 commit comments

Comments
 (0)