We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 439f270 commit bfb9d14Copy full SHA for bfb9d14
1 file changed
azure-pipelines.yml
@@ -47,6 +47,14 @@ jobs:
47
displayName: 'Build package inplace'
48
- script: python -u setup.py unittests
49
displayName: 'Runs Unit Tests'
50
+ - script: |
51
+ python -m pip install cibuildwheel
52
+ export CIBW_MANYLINUX_X86_64_IMAGE="manylinux_2_24"
53
+ export CIBW_BEFORE_BUILD="pip install ."
54
+ export CIBW_BEFORE_BUILD="pip install pybind11 cython numpy scipy pyquickhelper scikit-learn pandas pandas_streaming"
55
+ export CIBW_BUILD="cp39-manylinux_x86_64"
56
+ python -m cibuildwheel --output-dir dist/wheelhouse39 --platform linux
57
+ displayName: 'Build Package manylinux_x_y'
58
- script: |
59
python -m pip install cibuildwheel
60
export CIBW_MANYLINUX_X86_64_IMAGE="manylinux2014"
0 commit comments