File tree Expand file tree Collapse file tree 1 file changed +3
-10
lines changed
Expand file tree Collapse file tree 1 file changed +3
-10
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ version: 2
22jobs :
33 build :
44 docker :
5- - image : circleci /python:3.10.1
5+ - image : cimg /python:3.10.5
66
77 working_directory : ~/repo
88
1818 name : Install pandoc
1919 command : |
2020 sudo apt-get update
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
21+ wget https://github.com/jgm/pandoc/releases/download/2.18 /pandoc-2.18 -1-amd64.deb
22+ sudo dpkg -i pandoc-2.18 -1-amd64.deb
2323
2424 - run :
2525 name : Install tex
@@ -46,17 +46,13 @@ jobs:
4646 - run :
4747 name : install dependencies manual
4848 command : |
49- python3 -m venv venv
50- . venv/bin/activate
5149 pip install --upgrade pip
5250 pip install numpy scipy
5351 pip install scikit-learn --no-deps
5452
5553 - run :
5654 name : install dependencies (2)
5755 command : |
58- python3 -m venv venv
59- . venv/bin/activate
6056 pip install -r requirements.txt
6157
6258 - save_cache :
@@ -67,19 +63,16 @@ jobs:
6763 - run :
6864 name : compile and build
6965 command : |
70- . venv/bin/activate
7166 python setup.py build_ext --inplace
7267
7368 - run :
7469 name : run tests
7570 command : |
76- . venv/bin/activate
7771 python setup.py unittests
7872
7973 - run :
8074 name : wheel
8175 command : |
82- . venv/bin/activate
8376 python setup.py bdist_wheel
8477 mkdir -p test-reports/dist
8578 cp dist/*.whl test-reports/dist
You can’t perform that action at this time.
0 commit comments