From 7e0534eab55d9ec411597abbf85c7e284018226f Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Tue, 12 Oct 2021 14:20:47 +0100 Subject: [PATCH] numpy and matpltolib version numbers added to CI --- .github/workflows/CI.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index a0b0c751..991c0201 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -21,8 +21,11 @@ jobs: python-version: ${{ matrix.python-version }} architecture: x64 - - name: Display Python version - run: python -c "import sys; print(sys.version)" + - name: Display Python version numbers + 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: |