numpy and matpltolib version numbers added to CI

This commit is contained in:
Fabian Joswig 2021-10-12 14:20:47 +01:00
parent cddf6ddf6b
commit 7e0534eab5

View file

@ -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: |