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 }} python-version: ${{ matrix.python-version }}
architecture: x64 architecture: x64
- name: Display Python version numbers - name: Display Python version number
run: | run: |
python -c "import sys; print(sys.version)" python -c "import sys; print(sys.version)"
python -c "import numpy; print(numpy.__version__)"
python -c "import matplotlib; print(matplotlib.__version__)"
- name: Install - name: Install
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install -e . pip install -e .
pip install pytest pip install pytest
python -c "import numpy; print(numpy.__version__)"
python -c "import matplotlib; print(matplotlib.__version__)"
- name: Run tests - name: Run tests
run: pytest run: pytest