File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: 2
2
2
jobs :
3
3
build :
4
4
docker :
5
- - image : circleci/python:3.9.1
5
+ - image : circleci/python:3.9.6
6
6
7
7
working_directory : ~/repo
8
8
18
18
name : Install pandoc
19
19
command : |
20
20
sudo apt-get update
21
- wget https://github.com/jgm/pandoc/releases/download/2.11.3.2 /pandoc-2.11.3.2 -1-amd64.deb
22
- sudo dpkg -i pandoc-2.11.3.2 -1-amd64.deb
21
+ wget https://github.com/jgm/pandoc/releases/download/2.14.1 /pandoc-2.14.1 -1-amd64.deb
22
+ sudo dpkg -i pandoc-2.14.1 -1-amd64.deb
23
23
24
24
- run :
25
25
name : Install tex
Original file line number Diff line number Diff line change 47
47
displayName : ' Build package inplace'
48
48
- script : python -u setup.py unittests
49
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'
50
58
- script : |
51
59
python -m pip install cibuildwheel
52
60
export CIBW_MANYLINUX_X86_64_IMAGE="manylinux2014"
You can’t perform that action at this time.
0 commit comments