Skip to content

Commit 37b4f50

Browse files
committed
add py312 and py 313 wheels
1 parent e06e7a4 commit 37b4f50

File tree

2 files changed

+12
-10
lines changed

2 files changed

+12
-10
lines changed

.github/workflows/publish_pypi.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
matrix:
1717
os: [ubuntu-20.04, macos-13, windows-latest]
1818
cibw_archs: ["auto64"]
19-
cibw_build: ["cp38", "cp39", "cp310", "cp311"]
19+
cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
2020

2121
steps:
2222
- uses: actions/checkout@v3
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Install cibuildwheel
4242
run: |
43-
python -m pip install cibuildwheel==2.16.2 delvewheel==1.7.1 wheel
43+
python -m pip install cibuildwheel delvewheel wheel
4444
4545
- name: Building wheels
4646
run: |
@@ -98,7 +98,7 @@ jobs:
9898
matrix:
9999
os: [macos-13-xlarge]
100100
cibw_archs: ["arm64"]
101-
cibw_build: ["cp39", "cp310", "cp311"]
101+
cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
102102

103103
steps:
104104
- uses: actions/checkout@v3
@@ -111,7 +111,7 @@ jobs:
111111

112112
- name: Install cibuildwheel
113113
run: |
114-
python -m pip install cibuildwheel==2.16.2 delocate wheel
114+
python -m pip install cibuildwheel delocate wheel
115115
116116
- name: Building wheels
117117
run: |
@@ -120,8 +120,9 @@ jobs:
120120
CIBW_BUILD: ${{ matrix.cibw_build }}-*
121121
CIBW_BUILD_VERBOSITY: 3
122122
CIBW_ARCHS_MACOS: arm64
123-
CIBW_BEFORE_ALL_MACOS: brew install nasm libjpeg-turbo &&
123+
CIBW_BEFORE_ALL_MACOS: brew install nasm &&
124124
brew install llvm@16 &&
125+
brew uninstall --ignore-dependencies jpeg-turbo &&
125126
sudo xcode-select -s /Applications/Xcode_14.2.app &&
126127
bash ci-utils/install_prereq_linux.sh &&
127128
mkdir -p /tmp/bfiocpp_bld &&

.github/workflows/wheel_build.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
os: [ubuntu-20.04, macos-13, windows-latest]
1616
cibw_archs: ["auto64"]
17-
cibw_build: ["cp38", "cp39", "cp310", "cp311"]
17+
cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
1818

1919
steps:
2020
- uses: actions/checkout@v3
@@ -38,7 +38,7 @@ jobs:
3838

3939
- name: Install cibuildwheel
4040
run: |
41-
python -m pip install cibuildwheel==2.16.2 delvewheel==1.7.1 wheel
41+
python -m pip install cibuildwheel delvewheel wheel
4242
4343
- name: Building wheels
4444
run: |
@@ -94,7 +94,7 @@ jobs:
9494
matrix:
9595
os: [macos-13-xlarge]
9696
cibw_archs: ["arm64"]
97-
cibw_build: ["cp39", "cp310", "cp311"]
97+
cibw_build: ["cp39", "cp310", "cp311", "cp312", "cp313"]
9898

9999
steps:
100100
- uses: actions/checkout@v3
@@ -107,7 +107,7 @@ jobs:
107107

108108
- name: Install cibuildwheel
109109
run: |
110-
python -m pip install cibuildwheel==2.16.2 delocate wheel
110+
python -m pip install cibuildwheel delocate wheel
111111
112112
- name: Building wheels
113113
run: |
@@ -116,8 +116,9 @@ jobs:
116116
CIBW_BUILD: ${{ matrix.cibw_build }}-*
117117
CIBW_BUILD_VERBOSITY: 3
118118
CIBW_ARCHS_MACOS: arm64
119-
CIBW_BEFORE_ALL_MACOS: brew install nasm libjpeg-turbo &&
119+
CIBW_BEFORE_ALL_MACOS: brew install nasm &&
120120
brew install llvm@16 &&
121+
brew uninstall --ignore-dependencies jpeg-turbo &&
121122
sudo xcode-select -s /Applications/Xcode_14.2.app &&
122123
bash ci-utils/install_prereq_linux.sh &&
123124
mkdir -p /tmp/bfiocpp_bld &&

0 commit comments

Comments
 (0)