diff options
| author | 2019-09-23 16:15:49 +0200 | |
|---|---|---|
| committer | 2019-09-23 16:15:49 +0200 | |
| commit | 052fc4e36be6b0027ebbace530dbd9814660dc66 (patch) | |
| tree | 250036c9d5162c6ee62d1a7bd6c999a03a2caad5 /Pipfile | |
| parent | Change log.error to log.exception (diff) | |
| parent | Make DEFCON days subcommand enable DEFCON (#405) (diff) | |
Merge branch 'master' of https://github.com/python-discord/bot into python-discord-master
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 24 | 
1 files changed, 15 insertions, 9 deletions
| @@ -4,7 +4,7 @@ verify_ssl = true  name = "pypi"  [packages] -discord-py = {git = "https://github.com/Rapptz/discord.py.git",extras = ["voice"],ref = "860d6a9ace8248dfeec18b8b159e7b757d9f56bb",editable = true} +discord-py = "~=1.2"  aiodns = "*"  logmatic-python = "*"  aiohttp = "*" @@ -17,21 +17,27 @@ aio-pika = "*"  python-dateutil = "*"  deepdiff = "*"  requests = "*" +dateparser = "*" +more_itertools = "~=7.2"  urllib3 = ">=1.24.2,<1.25"  [dev-packages] -"flake8" = ">=3.6" -"flake8-bugbear" = "*" -"flake8-import-order" = "*" -"flake8-tidy-imports" = "*" -"flake8-todo" = "*" -"flake8-string-format" = "*" +flake8 = "~=3.7" +flake8-annotations = "~=1.0" +flake8-bugbear = "~=19.8" +flake8-docstrings = "~=1.4" +flake8-import-order = "~=0.18" +flake8-string-format = "~=0.2" +flake8-tidy-imports = "~=2.0" +flake8-todo = "~=0.7" +pre-commit = "~=1.18"  safety = "*"  dodgy = "*" -pre-commit = "*" +pytest = "*" +pytest-cov = "*"  [requires] -python_version = "3.6" +python_version = "3.7"  [scripts]  start = "python -m bot" | 
