diff options
| author | 2019-08-04 23:13:24 -0700 | |
|---|---|---|
| committer | 2019-08-04 23:13:24 -0700 | |
| commit | 89aee14db7d21ed3f9ba7c83b18f6fba79811285 (patch) | |
| tree | e0e2dc986637af0bb80e04c205bc4c693d46d282 /Pipfile | |
| parent | Merge pull request #34 from python-discord/linting-fix (diff) | |
Pin dependencies
Resolves #27
Diffstat (limited to 'Pipfile')
| -rw-r--r-- | Pipfile | 32 |
1 files changed, 16 insertions, 16 deletions
@@ -4,24 +4,24 @@ verify_ssl = true name = "pypi" [packages] -falcon = "*" -gunicorn = "*" -jsonschema = "*" +falcon = "~= 2.0.0" +gunicorn = "~= 19.9" +jsonschema = "~= 3.0" [dev-packages] -coverage = "*" -pre-commit = "*" -pydocstyle = "<4.0" -flake8 = "*" -flake8-docstrings = "*" -flake8-bugbear = "*" -flake8-import-order = "*" -flake8-tidy-imports = "*" -flake8-todo = "*" -flake8-string-format = "*" -flake8-formatter-junit-xml = "*" -flake8-quotes = "*" -unittest-xml-reporting = "*" +coverage = ">= 4.4.2, == 4.*" +pre-commit = "~= 1.18" +pydocstyle = "~= 4.0" +flake8 = "~= 3.7.8" +flake8-docstrings = ">= 1.3.1, == 1.*" +flake8-bugbear = "~= 19.3" +flake8-import-order = "~= 0.18.1" +flake8-tidy-imports = "~= 2.0" +flake8-todo = "~= 0.7" +flake8-string-format = "~= 0.2.3" +flake8-formatter-junit-xml = "~= 0.0.6" +flake8-quotes = "~= 2.1" +unittest-xml-reporting = ">= 2.5.1, == 2.*" [requires] python_version = "3.7" |