Skip to content

Commit

Permalink
CI: remove unused Python version checks.
Browse files Browse the repository at this point in the history
References: commit fc43da8
  • Loading branch information
jwilk committed Mar 11, 2023
1 parent fc43da8 commit a1f358a
Showing 1 changed file with 1 addition and 16 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,16 +63,6 @@ jobs:
run: |
python -m pip install pytest
python -m pytest --verbose
if:
matrix.python != '3.3' &&
matrix.python != '3.4'
- name: run tests
run: |
python -m pip install nose
python -m nose --verbose
if:
matrix.python == '3.3' ||
matrix.python == '3.4'
- name: run pycodestyle
run: |
pip install pycodestyle
Expand All @@ -83,17 +73,12 @@ jobs:
python -m pydiatra -v .
- name: run pyflakes
run: |
pyflakes=pyflakes
if [[ ${{matrix.python}} = 3.3 ]]; then pyflakes+='<2'; fi
python -m pip install $pyflakes
python -m pip install pyflakes
python -m pyflakes .
- name: run pylint
run: |
pip install pylint
private/run-pylint
if:
matrix.python != '3.3' &&
matrix.python != '3.4'
- name: check changelog syntax
run:
dpkg-parsechangelog -ldoc/changelog --all 2>&1 >/dev/null | { ! grep .; }
Expand Down

0 comments on commit a1f358a

Please sign in to comment.