We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 380b0a0 commit 1beadedCopy full SHA for 1beaded
2 files changed
.github/workflows/wheels.yml
@@ -28,6 +28,7 @@ jobs:
28
CIBW_SKIP: "*-musllinux_* *-win32 *-manylinux_i686"
29
CIBW_ARCHS_LINUX: x86_64
30
CIBW_ARCHS_MACOS: x86_64 arm64
31
+ CIBW_BEFORE_ALL_LINUX: yum install -y wget
32
CIBW_BEFORE_BUILD: ./build.sh
33
CIBW_BUILD_VERBOSITY: 1
34
pyproject.toml
@@ -56,6 +56,7 @@ test-command = "python -c 'import sharedmap; print(sharedmap.__version__)'"
56
[tool.cibuildwheel.linux]
57
archs = ["x86_64"]
58
manylinux-x86_64-image = "manylinux2014"
59
+before-all = "yum install -y wget"
60
61
[tool.cibuildwheel.macos]
62
archs = ["x86_64", "arm64"]
0 commit comments