numpy and mpl version numbers moved

This commit is contained in:
Fabian Joswig 2021-10-12 14:22:01 +01:00
parent 7e0534eab5
commit 83fc7c4629

View file

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