diff options
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 23 |
1 files changed, 19 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 9041d87c..0e6726b3 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,7 +72,11 @@ jobs: python -m pip install https://extras.wxpython.org/wxPython4/extras/linux/gtk3/ubuntu-20.04/wxPython-4.2.1-cp38-cp38-linux_x86_64.whl python -m pip install -r requirements.txt - python -m pip install pyinstaller==5.13.2 + # for networkx + python -m pip install pandas + python -m pip install pyarrow + + 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 @@ -118,7 +122,10 @@ jobs: python -m pip install scipy==1.9.0 pip install wxPython python -m pip install -r requirements.txt - python -m pip install pyinstaller==5.13.2 + # for networkx + python -m pip install pandas + + python -m pip install pyinstaller echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH - shell: bash @@ -166,7 +173,11 @@ jobs: python -m pip install wheel pip install wxPython python -m pip install -r requirements.txt - python -m pip install pyinstaller==5.13.2 + # for networkx + python -m pip install pandas + python -m pip install pyarrow + + python -m pip install pyinstaller echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH - shell: bash @@ -225,7 +236,11 @@ jobs: pip install PyGObject pip install wxPython pip install -r requirements.txt - pip install pyinstaller==5.13.2 + # for networkx + pip install pandas + pip install pyarrow + + pip install pyinstaller echo "${{ env.pythonLocation }}/bin" >> $GITHUB_PATH - shell: bash |
