From 5360f8ca27c2d99e19dccf99d0fd988055962b70 Mon Sep 17 00:00:00 2001 From: Tomas Stolker Date: Sun, 18 Jul 2021 08:11:12 +0200 Subject: [PATCH] Update pylint.yml --- .github/workflows/pylint.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 7b51706b..d727a56f 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -9,15 +9,16 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Python 3.9 + - name: Set up Python 3.8 uses: actions/setup-python@v2 with: - python-version: 3.9 + python-version: 3.8 - name: Install dependencies run: | python -m pip install --upgrade pip pip install pylint pip install cython + pip install mpi4py pip install -r requirements.txt - name: Analysing the code with pylint run: |