summaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml7
1 files changed, 6 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 3610ec6b..b9663c4b 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -74,7 +74,12 @@ jobs:
python -m pip install -r requirements.txt
python -m pip install pyinstaller
-
+
+ # scipy gives us a ELF error when stripped
+ sudo apt-get install gcc g++ gfortran python3-dev libopenblas-dev liblapack-dev
+ python -m pip uninstall --yes scipy
+ python -m pip install scipy --no-binary scipy
+
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
- shell: bash
run: |