diff options
| author | 2020-03-04 17:47:54 -0800 | |
|---|---|---|
| committer | 2020-03-04 18:58:51 -0800 | |
| commit | bbe81ebe0c27ea65fec1170648976d4fcd8c3f3c (patch) | |
| tree | fb58f0e2c1b5b472f5de3417875613596394c26c /Pipfile | |
| parent | Merge pull request #361 from ks129/games-command (diff) | |
Update dependencies
The pipfile will need to be re-locked to add a dependency so may as well
re-pin some dependencies to reflect the more recent versions that will
be used. discord.py was pinned to a patch version instead of a minor
version to be on the safe side.
Notable updates:
* discord.py -> 1.3.2
* flake8-annotation -> 2.0
* pre-commit -> 2.1
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 15 |
1 files changed, 8 insertions, 7 deletions
@@ -7,21 +7,22 @@ name = "pypi" aiodns = "~=2.0" arrow = "~=0.14" beautifulsoup4 = "~=4.8" -discord-py = "~=1.2" +discord-py = "~=1.3.2" fuzzywuzzy = "~=0.17" pillow = "~=6.2" pytz = "~=2019.2" [dev-packages] flake8 = "~=3.7" -flake8-annotations = "~=1.1" -flake8-bugbear = "~=19.8" -flake8-docstrings = "~=1.4" +flake8-annotations = "~=2.0" +flake8-bugbear = "~=20.1" +flake8-docstrings = "~=1.5" flake8-import-order = "~=0.18" -flake8-string-format = "~=0.2" -flake8-tidy-imports = "~=2.0" +flake8-string-format = "~=0.3" +flake8-tidy-imports = "~=4.0" flake8-todo = "~=0.7" -pre-commit = "~=1.18" +pep8-naming = "~=0.9" +pre-commit = "~=2.1" [requires] python_version = "3.7" |