Skip to content

Commit 777cfbb

Browse files
authored
Fix failing CI builds (#7)
1 parent 8235306 commit 777cfbb

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

.github/workflows/wheels.yml

+8-4
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,18 @@
11
name: Build
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches:
6+
- master
7+
pull_request:
48

59
jobs:
610
build_wheels:
711
name: Build wheels on ${{ matrix.os }}
812
runs-on: ${{ matrix.os }}
913
strategy:
1014
matrix:
11-
os: [ubuntu-latest, windows-latest, macos-12, macos-13, macos-14]
15+
os: [ubuntu-latest, windows-latest, macos-13, macos-14, macos-latest]
1216

1317
steps:
1418
- uses: actions/checkout@v4
@@ -22,9 +26,9 @@ jobs:
2226
platforms: all
2327

2428
- name: Build wheels
25-
uses: pypa/cibuildwheel@v2.16.5
29+
uses: pypa/cibuildwheel@v2.21.1
2630
env:
27-
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x
31+
CIBW_ARCHS_LINUX: auto
2832
CIBW_ARCHS_WINDOWS: all
2933

3034
- uses: actions/upload-artifact@v4

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ author = "The tksvg authors"
1010
url = "https://github.com/TkinterEP/tksvg"
1111

1212
[tool.cibuildwheel]
13-
skip = ["cp36-*", "cp37-*"]
13+
skip = ["cp36-*", "cp37-*", "cp38-*", "pp*"]
1414

1515
[tool.cibuildwheel.linux]
1616
before-all = "yum install -y tcl-devel tk-devel"

0 commit comments

Comments
 (0)