diff --git a/bin/steps/pipenv b/bin/steps/pipenv
index 622c7613ed752c229d877aec2f21a5841ddfeffb..60b643059f8c7df59d3ae489838381ad8bd18551 100644
--- a/bin/steps/pipenv
+++ b/bin/steps/pipenv
@@ -5,6 +5,5 @@ if [[ -f Pipfile ]]; then
 
         /app/.heroku/python/bin/pip install pipenv --upgrade &> /dev/null
         /app/.heroku/python/bin/pipenv lock --requirements --no-hashes > $BUILD_DIR/requirements.txt 2> /dev/null
-        pipstrip requirements.txt
     fi
 fi
\ No newline at end of file
diff --git a/vendor/pipstrip b/vendor/pipstrip
deleted file mode 100755
index 67cd04941aefc0845693decab4a56cce0f59c29f..0000000000000000000000000000000000000000
--- a/vendor/pipstrip
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env python
-
-import sys
-
-req_file = sys.argv[1]
-
-lines = []
-
-with open(req_file, 'r') as f:
-    r = f.readlines()
-    for l in r:
-        lines.append(l.split('--hash')[0])
-
-with open(req_file, 'w') as f:
-    f.write('\n'.join(lines))