From fdcfae347f710443dcb1a8f28234738209056b0d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mike=20F=C3=A4hrmann?= Date: Fri, 15 Sep 2023 14:19:47 +0200 Subject: [PATCH] do not restrict flake8 version --- .github/workflows/tests.yml | 3 +-- setup.cfg | 2 +- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 510045a0..168edb9b 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -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: | diff --git a/setup.cfg b/setup.cfg index a66d7cf3..e115e874 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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