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 - name: Install dependencies
run: | run: |
pip install -r requirements.txt pip install -r requirements.txt
pip install "flake8<4" "importlib-metadata<5" pip install flake8 youtube-dl
pip install youtube-dl
- name: Install yt-dlp - name: Install yt-dlp
run: | run: |

View File

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