Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 3 additions & 16 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ on:
pull_request:
branches:
- main
workflow_dispatch:

env:
VERSION: ${{ github.ref_name }}
Expand Down Expand Up @@ -59,6 +58,7 @@ jobs:
build-wheels:
name: Build wheels for ${{ matrix.os }}
runs-on: ${{ matrix.runs-on }}
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'pull_request'
strategy:
matrix:
include:
Expand All @@ -76,27 +76,13 @@ jobs:
- os: macos-arm
# macos-14+ (including latest) are ARM64 runners
runs-on: macos-latest
- os: android-intel
runs-on: ubuntu-latest
platform: android
- os: android-arm
# GitHub Actions doesn’t currently support the Android emulator on any ARM
# runner. So we build on a non-ARM runner, which will skip the tests.
runs-on: ubuntu-latest
platform: android
archs: arm64_v8a
- os: ios
runs-on: macos-latest
platform: ios
- os: pyodide
runs-on: ubuntu-latest
platform: pyodide
steps:
- uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
env:
CIBW_SKIP: "cp38-* *_ppc64le *_s390x *_riscv64"
CIBW_PLATFORM: ${{ matrix.platform || 'auto' }}
CIBW_ARCHS: ${{ matrix.archs || 'auto' }}
CIBW_ENVIRONMENT_PASS_LINUX: VERSION
Expand All @@ -109,6 +95,7 @@ jobs:
build-sdist:
name: Build source distribution
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v5

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
from os.path import abspath, dirname, join

# specify the version
version = 'v1.0.4'
version = 'v1.0.5'

here = abspath(dirname(__file__))

Expand Down
Loading