From df1de0201d21e51d169063bf06b1f4db26a69a1d Mon Sep 17 00:00:00 2001 From: Joshua Spear Date: Wed, 21 Feb 2024 18:35:28 +0000 Subject: [PATCH] updated requirements --- .github/workflows/test.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dd5d72b..1c2dd06 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -26,18 +26,21 @@ jobs: run: | python -m pip install --upgrade pip pip install numpy Cython pytest-cov + pip install -r requirements.txt pip install . - name: Install dependencies for macOS if: ${{ matrix.os == 'macos-latest' }} run: | python -m pip install --upgrade pip pip install numpy Cython pytest-cov + pip install -r requirements.txt pip install . - name: Install dependencies for ubuntu if: ${{ matrix.os == 'ubuntu-latest' }} run: | python -m pip install --upgrade pip pip install numpy Cython pytest-cov + pip install -r requirements.txt pip install . - name: Unit tests run: |