-
-
Notifications
You must be signed in to change notification settings - Fork 176
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* uprev test dependencies * add requirements-setup.txt, fix mypy * simplify file structure * using newer redis_types * fix linting
- Loading branch information
1 parent
980d85e
commit a5e6742
Showing
18 changed files
with
176 additions
and
191 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
-r ./docs.txt | ||
-r ./linting.txt | ||
-r ./testing.txt | ||
-r ./setup.txt |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
black==22.6.0 | ||
flake8==5.0.4 | ||
flake8-quotes==3.3.1 | ||
isort[colors]==5.10.1 | ||
mypy==0.971 | ||
pycodestyle==2.9.1 | ||
pyflakes==2.5.0 | ||
types-pytz==2022.2.1.0 | ||
types_redis==4.2.8 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
# | ||
# This file is autogenerated by pip-compile with python 3.9 | ||
# To update, run: | ||
# | ||
# pip-compile --output-file=requirements/setup.txt setup.py | ||
# | ||
async-timeout==4.0.2 | ||
# via redis | ||
click==8.1.3 | ||
# via arq (setup.py) | ||
deprecated==1.2.13 | ||
# via redis | ||
hiredis==2.0.0 | ||
# via redis | ||
packaging==21.3 | ||
# via redis | ||
pydantic==1.9.2 | ||
# via arq (setup.py) | ||
pyparsing==3.0.9 | ||
# via packaging | ||
redis[hiredis]==4.2.2 | ||
# via arq (setup.py) | ||
typing-extensions==4.3.0 | ||
# via | ||
# arq (setup.py) | ||
# pydantic | ||
wrapt==1.14.1 | ||
# via deprecated |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
coverage[toml]==6.4.4 | ||
dirty-equals==0.4 | ||
msgpack==1.0.4 | ||
pytest==7.1.2 | ||
pytest-asyncio==0.19.0 | ||
pytest-mock==3.8.2 | ||
pytest-sugar==0.9.5 | ||
pytest-timeout==2.1.0 | ||
pytz==2022.2.1 |
Oops, something went wrong.