diff options
-rw-r--r-- | python/Pipfile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/python/Pipfile b/python/Pipfile index ad582dd..65317af 100644 --- a/python/Pipfile +++ b/python/Pipfile @@ -18,6 +18,9 @@ pytest-mock = "*" pylint = "*" ipython = "*" mypy = "*" +pytype = "*" +flake8 = "*" +flake8-annotations = "*" [packages] requests = ">=2" @@ -36,6 +39,10 @@ urlcanon = "*" pillow = ">=3" poppler = ">=0.2" +# must lock black to an exact version because it is still "beta" +# see: https://github.com/psf/black/issues/517 +black = "==19.10b0" + [requires] python_version = "3.7" |