remove some pre-3.8 workarounds (#7671)

This commit is contained in:
Mike Fährmann
2025-06-17 12:56:47 +02:00
parent d0b1da0fa7
commit 6d928f3805
7 changed files with 8 additions and 37 deletions

View File

@@ -45,10 +45,7 @@ jobs:
- name: Install yt-dlp
run: |
case "${{ matrix.python-version }}" in
3.4|3.5)
# don't install yt-dlp
;;
3.6|3.7|3.8)
3.8)
# install from PyPI
pip install yt-dlp
;;
@@ -60,14 +57,7 @@ jobs:
- name: Lint with flake8
run: |
case "${{ matrix.python-version }}" in
3.4|3.5|3.6|3.7)
flake8 --extend-exclude scripts/export_tests.py,scripts/pyprint.py .
;;
*)
flake8 .
;;
esac
flake8 .
- name: Run tests
run: |