From 1724b8d0be94d3c5a6a55028ebcb933d9cebb60f Mon Sep 17 00:00:00 2001 From: eheinrich Date: Wed, 27 Jan 2021 13:33:12 -0800 Subject: [PATCH] Install numpy first --- .github/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index db644c8..2b61711 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -24,9 +24,9 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip + pip install coveralls 'numpy<1.20' pip install -r requirements.pip pip install -r test_requirements.pip - pip install coveralls - name: Run tests run: nosetests --with-coverage - name: Coveralls report