From 9bd6aad6296d24dc209bb5ae2cb976c81c58596a Mon Sep 17 00:00:00 2001 From: WyattBlue Date: Wed, 8 Feb 2023 00:53:27 -0500 Subject: [PATCH] Fix requirements --- .github/workflows/python-package.yml | 3 +-- requirements.dev.txt | 3 +++ requirements.txt | 4 ---- setup.py | 5 +++-- 4 files changed, 7 insertions(+), 8 deletions(-) delete mode 100644 requirements.txt diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index f90d6da..d1ed4c8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -26,9 +26,8 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install flake8 mypy==0.991 types-tqdm - pip install -r requirements.txt pip install -r requirements.dev.txt + pip install . - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names diff --git a/requirements.dev.txt b/requirements.dev.txt index 4ba826c..3f6d72c 100644 --- a/requirements.dev.txt +++ b/requirements.dev.txt @@ -1 +1,4 @@ pytest>=6.2.2 +flake8 +mypy==1.0.0 +types-tqdm \ No newline at end of file diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index 0067887..0000000 --- a/requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -tqdm>=4.64.1 -colorama>=0.4.6 -ffmpeg-progress-yield>=0.5.0 -colorlog==6.7.0 diff --git a/setup.py b/setup.py index ae782ab..a789286 100644 --- a/setup.py +++ b/setup.py @@ -33,9 +33,10 @@ "ffmpeg_normalize": ["py.typed"], }, install_requires=[ - "tqdm>=4.38.0", - "colorama>=0.4.3", + "tqdm>=4.64.1", + "colorama>=0.4.6", "ffmpeg-progress-yield>=0.5.0", + "colorlog==6.7.0", ], license="MIT", zip_safe=False,