Skip to content
Open
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
14 changes: 7 additions & 7 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,25 +17,25 @@ jobs:
matrix:
os: [ubuntu-22.04, windows-2022, macos-15-intel]
arch: [auto64]
cp: ["cp3{10,11,12,13,14}"]
cp: ["cp3{10,11,12,13,14,14t}"]
include:
- os: macos-14
arch: arm64
cp: "cp3{10,11,12,13,14}"
cp: "cp3{10,11,12,13,14,14t}"
- os: ubuntu-22.04-arm
arch: aarch64
cp: "cp3{10,11,12,13,14}"
cp: "cp3{10,11,12,13,14,14t}"
- os: windows-11-arm
arch: ARM64
cp: "cp3{11,12,13,14}"
cp: "cp3{11,12,13,14,14t}"

steps:
- uses: actions/checkout@v4
with:
submodules: true

- name: Build wheels
uses: pypa/cibuildwheel@v2.21.3
uses: pypa/cibuildwheel@v3.4.0
env:
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
Expand All @@ -59,7 +59,7 @@ jobs:
name: wheel-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.cp }}
path: ./wheelhouse/*.whl

# identical to "build_wheels", except with the older pypa/cibuildwheel@v2.19.2
# identical to "build_wheels", except with the older pypa/cibuildwheel
build_wheels_old:
name: Build wheels on ${{ matrix.os }} (${{ matrix.arch }}) for ${{ matrix.cp }}
runs-on: ${{ matrix.os }}
Expand All @@ -83,7 +83,7 @@ jobs:
submodules: true

- name: Build wheels
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v3.4.0
env:
CIBW_MANYLINUX_X86_64_IMAGE: manylinux_2_28
CIBW_MANYLINUX_AARCH64_IMAGE: manylinux_2_28
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
pass

NAME = 'skia-python'
__version__ = '144.0'
__version__ = '144.0.post1'

SKIA_PATH = os.getenv('SKIA_PATH', 'skia')
SKIA_OUT_PATH = os.getenv(
Expand Down
Loading