Skip to content

Commit dcb88da

Browse files
committed
Update github actions
1 parent 843ab81 commit dcb88da

2 files changed

Lines changed: 5 additions & 4 deletions

File tree

cibuildwheel_scripts/before-all.linux.bash

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ set -eux
22

33
# install prerequisites
44
if command -v yum >/dev/null 2>&1; then
5-
yum -y install git curl zip unzip tar
5+
yum -y install git curl zip unzip tar gcc gcc-c++ ninja-build
66
elif command -v microdnf >/dev/null 2>&1; then
7-
microdnf -y install git curl zip unzip tar
7+
microdnf -y install git curl zip unzip tar gcc gcc-c++ ninja-build
88
elif command -v apk >/dev/null 2>&1; then
9-
apk add --no-cache git curl zip unzip tar
9+
apk add --no-cache git curl zip unzip tar build-base ninja
1010
fi
1111

1212
# install vcpkg

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ build-verbosity = 1
3737
# test-requires = "pytest"
3838

3939
# skip pypy wheels
40-
skip = "pp*"
40+
skip = ["pp*", "cp38*", "cp39*", "cp310*", "cp311*", "cp312*"]
4141

4242
[tool.cibuildwheel.macos]
4343

@@ -58,4 +58,5 @@ before-all = "powershell -ExecutionPolicy Bypass -File cibuildwheel_scripts/befo
5858

5959
[tool.cibuildwheel.windows.environment]
6060
VCPKG_ROOT = "C:/vcpkg"
61+
VCPKG_TARGET_TRIPLET = "x64-windows"
6162
CMAKE_TOOLCHAIN_FILE = "C:/vcpkg/scripts/buildsystems/vcpkg.cmake"

0 commit comments

Comments
 (0)