From 56794a2bc9e709ae4e04fa0d6b4363fc3a070f60 Mon Sep 17 00:00:00 2001 From: Danny Meijer <10511979+dannymeijer@users.noreply.github.com> Date: Fri, 21 Jun 2024 20:53:52 +0200 Subject: [PATCH] debug --- .github/workflows/test.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 622f2bc..4446116 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -92,15 +92,14 @@ jobs: with: python-version: ${{ matrix.python-version }} - # FIXME: Remove this workaround - - name: Print numpy and pandas versions - run: | - hatch run python -c "import numpy; print(numpy.__version__)" - hatch run python -c "import pandas; print(pandas.__version__)" - - name: Install Hatch uses: pypa/hatch@install + # FIXME: Remove this workaround + - name: Print numpy and pandas versions + run: | + python -c "import numpy; print(numpy.__version__)" + python -c "import pandas; print(pandas.__version__)" # - name: Check Code Quality # run: |- # hatch fmt --check --python=${{ matrix.python-version }}