We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e183891 commit 922da5cCopy full SHA for 922da5c
.travis.yml
@@ -38,10 +38,18 @@ install:
38
# Maybe get and clean and patch source
39
- |
40
python3 -m pip install cibuildwheel==3.2.1
41
+ python3 -m cibuildwheel --help # make sure it is installed correctly
42
echo done install step
43
44
script:
- - python3 -m cibuildwheel --output-dir dist
45
+ - |
46
+ export CIBW_BUILD="cp39-manylinux_${PLAT}"
47
+ export CIBW_MANYLINUX_S390X_IMAGE="manylinux${MB_ML_VER}"
48
+ export CIBW_MANYLINUX_PPC64LE_IMAGE="manylinux${MB_ML_VER}"
49
+
50
+ python3 -m cibuildwheel --print-build-identifiers
51
52
+ python3 -m cibuildwheel --output-dir dist
53
54
after_success:
55
- set +ex
0 commit comments