From 6e48611d51c73113813dd9df5b88cccf06b7cb30 Mon Sep 17 00:00:00 2001 From: Eric Phipps Date: Thu, 15 Aug 2024 10:39:08 -0600 Subject: [PATCH] Use developer version of pyttb as released version is too old --- .github/workflows/cmake-multi-platform.yml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cmake-multi-platform.yml b/.github/workflows/cmake-multi-platform.yml index 3d81933e97..645017b6ad 100644 --- a/.github/workflows/cmake-multi-platform.yml +++ b/.github/workflows/cmake-multi-platform.yml @@ -58,8 +58,14 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - pip install pyttb - echo "$PYTHONPATH" + # Released version of pyttb is too old, so we need to build from the github repo + #pip install pyttb + mkdir pyttb + cd pyttb + git clone https://github.com/sandialabs/pyttb.git + cd pyttb + pip install . + - name: Configure CMake # Configure CMake in a 'build' subdirectory. `CMAKE_BUILD_TYPE` is only required if you are using a single-configuration generator such as make.