4
4
vmImage : ' ubuntu-latest'
5
5
strategy :
6
6
matrix :
7
- Python39 -Linux :
8
- python.version : ' 3.9 '
7
+ Python310 -Linux :
8
+ python.version : ' 3.10 '
9
9
maxParallel : 3
10
10
steps :
11
11
- task : UsePythonVersion@0
51
51
python -m pip install cibuildwheel
52
52
export CIBW_MANYLINUX_X86_64_IMAGE="manylinux_2_24"
53
53
export CIBW_BEFORE_BUILD="pip install pybind11 cython numpy scipy pyquickhelper scikit-learn pandas pandas_streaming"
54
- export CIBW_BUILD="cp39-manylinux_x86_64"
55
- python -m cibuildwheel --output-dir dist/wheelhouse39 --platform linux
54
+ export CIBW_BUILD="cp39-manylinux_x86_64 cp310-manylinux_x86_64 "
55
+ python -m cibuildwheel --output-dir dist/wheelhouse_2 --platform linux
56
56
displayName: 'Build Package manylinux_x_y'
57
57
- script : |
58
58
python -m pip install cibuildwheel
71
71
vmImage : ' windows-latest'
72
72
strategy :
73
73
matrix :
74
- Python39 -Windows :
75
- python.version : ' 3.9 '
74
+ Python310 -Windows :
75
+ python.version : ' 3.10 '
76
76
maxParallel : 3
77
77
steps :
78
78
- task : UsePythonVersion@0
92
92
- script : |
93
93
python -m pip install cibuildwheel
94
94
set CIBW_BEFORE_BUILD=pip install pybind11 cython numpy scipy pyquickhelper scikit-learn pandas pandas_streaming
95
- set CIBW_BUILD=cp37-win_amd64 cp38-win_amd64 cp39-win_amd64
95
+ set CIBW_BUILD=cp37-win_amd64 cp38-win_amd64 cp39-win_amd64 cp310-win_amd64
96
96
python -m cibuildwheel --output-dir dist/wheelhouse
97
97
displayName: 'Build Package many'
98
98
- task : PublishPipelineArtifact@0
@@ -105,8 +105,8 @@ jobs:
105
105
vmImage : ' macOS-latest'
106
106
strategy :
107
107
matrix :
108
- Python39 -MacOs :
109
- python.version : ' 3.9 '
108
+ Python310 -MacOs :
109
+ python.version : ' 3.10 '
110
110
maxParallel : 3
111
111
steps :
112
112
- task : UsePythonVersion@0
@@ -159,7 +159,7 @@ jobs:
159
159
- script : |
160
160
python -m pip install cibuildwheel
161
161
export CIBW_BEFORE_BUILD="pip install pybind11 cython numpy scipy pyquickhelper scikit-learn pandas pandas_streaming"
162
- export CIBW_BUILD="cp37-macosx_x86_64 cp38-macosx_x86_64 cp39-macosx_x86_64"
162
+ export CIBW_BUILD="cp37-macosx_x86_64 cp38-macosx_x86_64 cp39-macosx_x86_64 cp310-macosx_x86_64 "
163
163
python -m cibuildwheel --output-dir dist/wheelhouse
164
164
displayName: 'Build Package many'
165
165
- task : PublishPipelineArtifact@0
0 commit comments