From 83fc7c46293f8f2696bfef93a1d5bb7231d9ad89 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 12 Oct 2021 14:22:01 +0100 Subject: [PATCH] numpy and mpl version numbers moved --- .github/workflows/CI.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index 991c0201..6e628c86 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,17 +21,17 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 - - name: Display Python version numbers + - name: Display Python version number run: | python -c "import sys; print(sys.version)" - python -c "import numpy; print(numpy.__version__)" - python -c "import matplotlib; print(matplotlib.__version__)" - name: Install run: | python -m pip install --upgrade pip pip install -e . pip install pytest + python -c "import numpy; print(numpy.__version__)" + python -c "import matplotlib; print(matplotlib.__version__)" - name: Run tests run: pytest