7 lines
122 B
Bash
7 lines
122 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
set -e
|
||
|
|
set -x
|
||
|
|
|
||
|
|
python -m pip install cibuildwheel
|
||
|
|
python -m cibuildwheel build/python --output-dir wheelhouse
|