Skip to content

Commit

Permalink
[ci] drop python 2
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannesBuchner committed Aug 5, 2023
1 parent 2f438be commit 987a87f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
shell: bash -l {0}
strategy:
matrix:
python-version: ['2.7', '3.6', '3.9.1', '3']
python-version: ['3.9.1', '3']
fail-fast: false
steps:
- uses: actions/checkout@v2
Expand All @@ -41,7 +41,8 @@ jobs:
- name: Install testing dependencies (Python 3.6+)
if: ${{ !((matrix.python-version == '2.7') || (matrix.python-version == '3.5')) }}
run: |
conda install -c anaconda -c conda-forge --file requirements-linting-old.txt coverage-lcov mypy types-six typed-ast
conda install -c anaconda -c conda-forge --file requirements-linting-old.txt mypy types-six typed-ast
pip install git+https://github.com/JohannesBuchner/coverage-lcov
- name: Preinstall dependencies (Python 2.7) from anaconda
if: ${{ matrix.python-version == '2.7' }}
run: |
Expand Down

0 comments on commit 987a87f

Please sign in to comment.