install requirements changed in pytest workflow

This commit is contained in:
Fabian Joswig 2021-11-01 13:39:55 +00:00
parent d44168f6ae
commit 01ec78a2a3

View file

@ -13,7 +13,7 @@ jobs:
strategy: strategy:
fail-fast: true fail-fast: true
matrix: matrix:
python-version: ["3.6", "3.7", "3.8", "3.9", "pypy3"] python-version: ["3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
steps: steps:
- name: Checkout source - name: Checkout source
@ -27,6 +27,12 @@ jobs:
- name: Install - name: Install
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
pip install numpy>=1.16
pip install scipy
pip install autograd>=1.2
pip install numdifftools
pip install matplotlib
pip install iminuit<2
pip install . pip install .
pip install pytest pip install pytest
pip install pytest-cov pip install pytest-cov