Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
This commit is contained in:
2018-02-23 15:26:19 -05:00
parent e711fe3137
commit 3eb42bc3c9
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
- Deprecate `pipenv update` command.
- Fully remove `check --style` functionality.
- Better `lock -r` functionality.
- Up-to-date security checks for `pipenv check`.
9.1.0:
- Add --system flag to $ pipenv check.
- Removal of package name suggestions.
+1 -1
View File
@@ -2147,7 +2147,7 @@ def do_check(three=None, python=False, system=False, unused=False, args=None):
else:
python = system_which('python')
c = delegator.run('"{0}" {1} check --json'.format(python, shellquote(path)))
c = delegator.run('"{0}" {1} check --json --key=1ab8d58f-5122e025-83674263-bc1e79e0'.format(python, shellquote(path)))
try:
results = simplejson.loads(c.out)
except ValueError: