From 04cb356f05bdb35d61d925877f1f2a40aad62c47 Mon Sep 17 00:00:00 2001 From: sg495 Date: Tue, 30 Jan 2024 13:12:58 +0000 Subject: [PATCH] Added numpy dependency to github workflow --- .github/workflows/python-pytest.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/python-pytest.yml b/.github/workflows/python-pytest.yml index 158aa12..ba1a1c3 100644 --- a/.github/workflows/python-pytest.yml +++ b/.github/workflows/python-pytest.yml @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - python -m pip install mypy pylint pytest rich + python -m pip install mypy pylint pytest rich numpy if [ -f requirements.txt ]; then pip install -r requirements.txt; fi - name: Test with pytest run: |