aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar sco1 <[email protected]>2019-09-03 14:03:11 -0400
committerGravatar sco1 <[email protected]>2019-09-03 14:03:11 -0400
commitdb7ab80b825a7749b3c503de6f9c1605a7d2c76c (patch)
tree617f3bf675ba6e95ad80403052ff71b360bd75c8 /Pipfile
parentUse pipenv lint script for pre-commit hook (diff)
Remove pydocstyle pinning now that flake8-docstrings is fixed
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile14
1 files changed, 7 insertions, 7 deletions
diff --git a/Pipfile b/Pipfile
index e2ad73ef3..2e56a3d7b 100644
--- a/Pipfile
+++ b/Pipfile
@@ -21,15 +21,15 @@ dateparser = "*"
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-bugbear = "~=19.8"
+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 = "*"
[requires]