Skip to content

Commit

Permalink
Fix failing CI builds (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
rdbende authored Sep 24, 2024
1 parent 8235306 commit 777cfbb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
@@ -1,14 +1,18 @@
name: Build

on: [push, pull_request]
on:
push:
branches:
- master
pull_request:

jobs:
build_wheels:
name: Build wheels on ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-12, macos-13, macos-14]
os: [ubuntu-latest, windows-latest, macos-13, macos-14, macos-latest]

steps:
- uses: actions/checkout@v4
Expand All @@ -22,9 +26,9 @@ jobs:
platforms: all

- name: Build wheels
uses: pypa/cibuildwheel@v2.16.5
uses: pypa/cibuildwheel@v2.21.1
env:
CIBW_ARCHS_LINUX: auto aarch64 ppc64le s390x
CIBW_ARCHS_LINUX: auto
CIBW_ARCHS_WINDOWS: all

- uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ author = "The tksvg authors"
url = "https://github.com/TkinterEP/tksvg"

[tool.cibuildwheel]
skip = ["cp36-*", "cp37-*"]
skip = ["cp36-*", "cp37-*", "cp38-*", "pp*"]

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

0 comments on commit 777cfbb

Please # to comment.