From 8f0814f4b58c415c17886199eb9e55d65d68643c Mon Sep 17 00:00:00 2001 From: Vincent Rouvreau Date: Tue, 19 Nov 2024 10:41:14 +0100 Subject: [PATCH] try these python changes, because python was not found by CMake, and pip install --user was returning an error as --user not accepted in venv --- appveyor.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index 923ed87c1..583b2acbb 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -13,8 +13,8 @@ stack: python 3.9 install: - sh: | git submodule update --init - python -m pip install --user -r ext/gudhi-deploy/build-requirements.txt - python -m pip install --user -r ext/gudhi-deploy/test-requirements.txt + python -m pip install -r ext/gudhi-deploy/build-requirements.txt + python -m pip install -r ext/gudhi-deploy/test-requirements.txt python -m pip uninstall -y pykeops brew update || true brew install ninja graphviz doxygen boost eigen gmp mpfr tbb cgal || true @@ -24,7 +24,7 @@ build_script: mkdir build cd build which python - cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) $(extraCmakeOptions) -GNinja $(gudhiCmakeOptions) .. + cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) -GNinja $(gudhiCmakeOptions) .. ninja ninja doxygen ctest --output-on-failure