From 5532396103fe4d3dae733dc00677d7a8d6c7bb0e Mon Sep 17 00:00:00 2001 From: Matthew Newville Date: Mon, 20 May 2024 14:17:28 -0500 Subject: [PATCH] add optional install of numpy_financial to CI tests --- .github/workflows/ubuntu_numpy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ubuntu_numpy.yml b/.github/workflows/ubuntu_numpy.yml index 71cc28c..7c4eba7 100644 --- a/.github/workflows/ubuntu_numpy.yml +++ b/.github/workflows/ubuntu_numpy.yml @@ -27,9 +27,9 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install setuptools codecov pytest pytest-cov coverage numpy + - name: Install financial - if: ${{ matrix.with_financial }} - run: | - python -m pip install numpy_financial + run: python -m pip install numpy_financial - name: Install this package python -m pip install . - name: Test with pytest