From 21f9c5ea7f20cf6381a3a37f7dfb06acdf3a46a1 Mon Sep 17 00:00:00 2001 From: Jay Convertino <62018821+johnathan-convertino-afrl@users.noreply.github.com> Date: Mon, 8 Jul 2024 12:49:59 -0400 Subject: [PATCH] add to dep step instead --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b861e818..7a369914 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -53,14 +53,12 @@ jobs: uses: actions/setup-python@v1 with: python-version: ${{ matrix.pyver }} - - - name: 🛠️ Fix numpy - run: pip install --force-reinstall -v "numpy<=1.24" - name: 🛠️ Install dependencies run: | python -c "import sys; print(sys.version)" pip install tox + pip install --force-reinstall "numpy<=1.24" - name: 🚧 Build package and run tests with tox run: tox -e py -- -vv