From e331f756f549e9ac206826fd2c9c8326897e6a6c Mon Sep 17 00:00:00 2001 From: Jeff Klenzing Date: Thu, 5 Sep 2024 14:14:44 -0400 Subject: [PATCH] MAINT: python m for ops --- .github/workflows/main.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 88e65e1..483d481 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -43,11 +43,10 @@ jobs: - name: Install Operational dependencies if: ${{ matrix.test_config == 'Ops'}} run: | - pip install --upgrade pip - pip install numpy==${{ matrix.numpy_ver }} - pip install -r requirements.txt - pip install -r test_requirements.txt - pip install . + python -m pip install numpy==${{ matrix.numpy_ver }} + python -m pip install -r requirements.txt + python -m pip install -r test_requirements.txt + python -m pip install . - name: Install NEP29 dependencies if: ${{ matrix.test_config == 'NEP29'}}