do not restrict flake8 version

This commit is contained in:
Mike Fährmann
2023-09-15 14:19:47 +02:00
parent 05f183d7d4
commit fdcfae347f
2 changed files with 2 additions and 3 deletions

View File

@@ -32,8 +32,7 @@ jobs:
- name: Install dependencies
run: |
pip install -r requirements.txt
pip install "flake8<4" "importlib-metadata<5"
pip install youtube-dl
pip install flake8 youtube-dl
- name: Install yt-dlp
run: |

View File

@@ -1,5 +1,5 @@
[flake8]
exclude = .git,__pycache__,build,dist,archive,test/results
exclude = .git,__pycache__,build,dist,archive,results
ignore = E203,E226,W504
per-file-ignores =
setup.py: E501