aboutsummaryrefslogtreecommitdiffstats
path: root/Pipfile
diff options
context:
space:
mode:
authorGravatar Joseph Banks <[email protected]>2019-07-07 00:18:46 +0100
committerGravatar Joseph Banks <[email protected]>2019-07-07 00:18:46 +0100
commitb467d74ed86e109e7b4fac62634219b7b7955414 (patch)
treedd3fbe1a65770b464095462945a52a48bc56bc3e /Pipfile
parentunpin flake8 & flake8 docstrings to see if it fixes linting (diff)
pin pycodestyle to 3.0.0 and fix linting errors
Diffstat (limited to 'Pipfile')
-rw-r--r--Pipfile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Pipfile b/Pipfile
index e68abcad..036f079c 100644
--- a/Pipfile
+++ b/Pipfile
@@ -4,7 +4,7 @@ url = "https://pypi.org/simple"
verify_ssl = true
[dev-packages]
-flake8 = "*"
+flake8 = "~=3.7.7"
flake8-bandit = "==1.0.2"
flake8-bugbear = "~=19.3.0"
flake8-import-order = "~=0.18.1"
@@ -14,7 +14,8 @@ mccabe = "~=0.6.1"
pep8-naming = "~=0.8.2"
coverage = "~=4.5.3"
unittest-xml-reporting = "~=2.5.1"
-flake8-docstrings = "*"
+flake8-docstrings = "~=1.3.0"
+pydocstyle = "==3.0.0"
[packages]
django = "~=2.2"