From 7cb82e2979f9e18e79115ed7907b2899b5d19c3e Mon Sep 17 00:00:00 2001 From: Allan Jeremy Date: Tue, 24 May 2022 08:50:30 +0300 Subject: [PATCH] [Dependency] Added scipy installation --- .github/workflows/benchmark-cachegrind.yml | 6 ++++-- .github/workflows/benchmark.yml | 6 ++++-- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/benchmark-cachegrind.yml b/.github/workflows/benchmark-cachegrind.yml index 30b9c11b..63a814cb 100644 --- a/.github/workflows/benchmark-cachegrind.yml +++ b/.github/workflows/benchmark-cachegrind.yml @@ -39,8 +39,10 @@ jobs: python-version: "3.9" architecture: "x64" - - name: Install requests - run: python -m pip install requests && pwd + - name: Install python dependencies + run: | + python -m pip install requests + python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose - name: Run benchmark run: | diff --git a/.github/workflows/benchmark.yml b/.github/workflows/benchmark.yml index 48fcd9f3..410d34cf 100644 --- a/.github/workflows/benchmark.yml +++ b/.github/workflows/benchmark.yml @@ -39,8 +39,10 @@ jobs: python-version: "3.9" architecture: "x64" - - name: Install requests - run: python -m pip install requests && pwd + - name: Install python dependencies + run: | + python -m pip install requests + python -m pip install --user numpy scipy matplotlib ipython jupyter pandas sympy nose - name: Run benchmark run: |