Skip to content

Commit

Permalink
try these python changes, because python was not found by CMake, and …
Browse files Browse the repository at this point in the history
…pip install --user was returning an error as --user not accepted in venv
  • Loading branch information
VincentRouvreau committed Nov 19, 2024
1 parent e2b276c commit 8f0814f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 8f0814f

Please sign in to comment.