From 34a297bcf9c0bbb7eab8f6fa85a5b4c7cbd46483 Mon Sep 17 00:00:00 2001 From: Georg Reich Date: Tue, 13 Feb 2024 18:13:14 +0100 Subject: [PATCH] added jax install to workflow --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 299eec71..7b6c23d2 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,7 +25,7 @@ jobs: - name: Install dependencies 🛠 run: | python -m pip install --upgrade pip setuptools - pip install flake8 codecov pytest-cov wheel matplotlib seaborn mne + pip install flake8 codecov pytest-cov wheel matplotlib seaborn mne "jax[cpu]" if [ -f requirements.txt ]; then pip install -r requirements.txt; fi pip install . - name: Lint with flake8 🎓