From 3b03357730c05581a44e21d8915d799d20451c68 Mon Sep 17 00:00:00 2001 From: thouska Date: Tue, 21 Jun 2022 15:38:09 +0200 Subject: [PATCH 1/2] Add dependencies of spotpy --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index cb079043..18db5fb1 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest + pip install flake8 pytest numpy matplotlib pandas scipy click deap docutils numba tables pathos mpi4py if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: | From 7c13af4b5b3d0fb694f5282246bf3644fa750448 Mon Sep 17 00:00:00 2001 From: thouska Date: Tue, 21 Jun 2022 15:48:33 +0200 Subject: [PATCH 2/2] Reomve mpi4py from dependencies Does somehow not compile under Github-Actions --- .github/workflows/python-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-app.yml b/.github/workflows/python-app.yml index 18db5fb1..30acd6e4 100644 --- a/.github/workflows/python-app.yml +++ b/.github/workflows/python-app.yml @@ -26,7 +26,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 pytest numpy matplotlib pandas scipy click deap docutils numba tables pathos mpi4py + pip install flake8 pytest numpy matplotlib pandas scipy click deap docutils numba tables pathos if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Lint with flake8 run: |