Skip to content

Commit 8ec5dab

Browse files
committed
ci: let cibuildwheel install Python versions
Signed-off-by: Christopher Arndt <[email protected]>
1 parent 74ddcf6 commit 8ec5dab

File tree

4 files changed

+2
-40
lines changed

4 files changed

+2
-40
lines changed

.github/workflows/pr_to_master.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,6 @@ jobs:
5050
- uses: ilammy/msvc-dev-cmd@v1
5151
if: matrix.os == 'windows-latest'
5252

53-
- name: Install Python
54-
uses: actions/setup-python@v5
55-
with:
56-
python-version: |
57-
3.9
58-
3.10
59-
3.11
60-
3.12
61-
3.13
62-
pypy3.9
63-
pypy3.10
64-
pypy3.11
65-
6653
- name: Build wheels
6754
uses: pypa/[email protected]
6855
env:

.github/workflows/push_to_master.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,6 @@ jobs:
5050
- uses: ilammy/msvc-dev-cmd@v1
5151
if: matrix.os == 'windows-latest'
5252

53-
- name: Install Python
54-
uses: actions/setup-python@v5
55-
with:
56-
python-version: |
57-
3.9
58-
3.10
59-
3.11
60-
3.12
61-
3.13
62-
pypy3.9
63-
pypy3.10
64-
pypy3.11
65-
6653
- name: Build wheels
6754
uses: pypa/[email protected]
6855
env:

.github/workflows/release.yml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -53,19 +53,6 @@ jobs:
5353
- uses: ilammy/msvc-dev-cmd@v1
5454
if: matrix.os == 'windows-latest'
5555

56-
- name: Install Python
57-
uses: actions/setup-python@v5
58-
with:
59-
python-version: |
60-
3.9
61-
3.10
62-
3.11
63-
3.12
64-
3.13
65-
pypy3.9
66-
pypy3.10
67-
pypy3.11
68-
6956
- name: Build wheels
7057
uses: pypa/[email protected]
7158
env:

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,10 +96,11 @@ manylinux-aarch64-image = "manylinux_2_28"
9696
test-requires = "pytest"
9797
test-command = "pytest -v -m ci {package}/tests"
9898

99-
# Install system library
10099
[tool.cibuildwheel.linux]
101100
build = ["cp3{9,10,11,12,13}-manylinux*", "pp3{9,10,11}-manylinux*"]
102101
archs = ["auto64"]
102+
enable = ["pypy"]
103+
# Install system libraries
103104
before-all = [
104105
"dnf -y install alsa-lib-devel alsa-utils",
105106
"curl -o jack2-1.9.22.tar.gz https://codeload.github.com/jackaudio/jack2/tar.gz/refs/tags/v1.9.22",

0 commit comments

Comments
 (0)