Skip to content

Commit

Permalink
Merge pull request #385 from RemiLehe/pyflakes_no_py_37
Browse files Browse the repository at this point in the history
Do not use pyflakes for version 3.7
  • Loading branch information
ax3l authored Aug 9, 2023
2 parents d1bda6b + b1efea7 commit 1ebf393
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/unix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,15 @@ jobs:
if [ "${{ matrix.python-version }}" != "3.8" ]; then
conda install --yes cython numpy scipy h5py openpmd-api matplotlib jupyter pytest pyflakes python=${{ matrix.python-version }} python-wget
else
conda install --yes cython numpy scipy h5py matplotlib jupyter pytest pyflakes python=${{ matrix.python-version }} python-wget
conda install --yes cython numpy scipy h5py matplotlib jupyter pytest pyflakes python=${{ matrix.python-version }} python-wget
fi
- shell: bash -eo pipefail -l {0}
name: pyflakes
run: python -m pyflakes openpmd_viewer
run: |
if [ "${{ matrix.python-version }}" != "3.7" ]; then
python -m pyflakes openpmd_viewer
fi
- shell: bash -eo pipefail -l {0}
name: Test
run: python setup.py test

0 comments on commit 1ebf393

Please sign in to comment.