summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2022-07-08 07:33:45 +0200
committerGitHub <noreply@github.com>2022-07-08 07:33:45 +0200
commit28534cf1a8d692687d9f40c3be622e0945b5a2ee (patch)
treefe2707c884cdd359232d5cca47fdd1aa0f4208dc /.github
parent8d9a469ae2c289d2fde46c64d6d6d37e27dc9520 (diff)
linux scipy/linalg libraries: ELF (#1714)
* do not strip any scipy library for linux * apply settings to debug formats * use fixed pyembroidery Co-authored-by: Lex Neva
Diffstat (limited to '.github')
-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: |