Skip to content

Commit

Permalink
Fix requirements (#218)
Browse files Browse the repository at this point in the history
  • Loading branch information
WyattBlue authored Feb 8, 2023
1 parent 498f9e1 commit 32e4f24
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 8 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions requirements.dev.txt
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
pytest>=6.2.2
flake8
mypy==1.0.0
types-tqdm
4 changes: 0 additions & 4 deletions requirements.txt

This file was deleted.

5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 32e4f24

Please sign in to comment.