From b84ea8b77c759e8f8c84ca1b21f5eded3a975a50 Mon Sep 17 00:00:00 2001 From: ROUVREAU Vincent Date: Thu, 6 Feb 2020 13:06:10 +0100 Subject: Use python3 --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to '.circleci') diff --git a/.circleci/config.yml b/.circleci/config.yml index a166a439..abcd52dd 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -60,11 +60,11 @@ jobs: cd build; cmake -DCMAKE_BUILD_TYPE=Release -DWITH_GUDHI_EXAMPLE=OFF -DWITH_GUDHI_UTILITIES=OFF -DWITH_GUDHI_PYTHON=ON -DPython_ADDITIONAL_VERSIONS=3 ..; cd python; - python setup.py build_ext -j 4 --inplace; + python3 setup.py build_ext -j 4 --inplace; make sphinx; cp -R python/sphinx /tmp/sphinx; - python setup.py install; - python setup.py clean --all; + python3 setup.py install; + python3 setup.py clean --all; ctest -j 4 --output-on-failure; - store_artifacts: -- cgit v1.2.3