From 01ec78a2a377ae54e82433d629aa86a6702edb51 Mon Sep 17 00:00:00 2001 From: Fabian Joswig Date: Mon, 1 Nov 2021 13:39:55 +0000 Subject: [PATCH] install requirements changed in pytest workflow --- .github/workflows/pytest.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index d3ee4116..75b0b884 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: true 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: - name: Checkout source @@ -27,6 +27,12 @@ jobs: - name: Install run: | 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 pytest pip install pytest-cov