Skip to content

Commit

Permalink
Drop Python 2.7 from GitHub Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
wkentaro committed Jan 16, 2024
1 parent 62bb17e commit 44cd4df
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["2.7", "3.7", "3.10"]
python-version: ["3.7", "3.10"]

steps:
- uses: actions/setup-python@v4
Expand All @@ -38,13 +38,11 @@ jobs:
run: |
pip install black
black --check .
if: matrix.python-version != '2.7'
- name: Mypy
run: |
pip install mypy
mypy --install-types --non-interactive --ignore-missing-imports -p gdown
if: matrix.python-version != '2.7'
- name: Test with pytest
run: |
Expand Down Expand Up @@ -140,7 +138,6 @@ jobs:
# actual_hash=$(find $output -type f -exec md5sum {} \; | awk '{print $1}' | sort | md5sum | awk '{print $1}')
# test $actual_hash = b0e45acb8d9c7d9200ce8fe38896c790
# rm -rf $output
# if: matrix.python-version != '2.7'

- name: Install from dist
run: |
Expand Down

0 comments on commit 44cd4df

Please sign in to comment.