diff --git a/HISTORY.txt b/HISTORY.txt index 6df55e10..0e5e9d8d 100644 --- a/HISTORY.txt +++ b/HISTORY.txt @@ -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. diff --git a/pipenv/core.py b/pipenv/core.py index e94ee10a..8814b8d7 100644 --- a/pipenv/core.py +++ b/pipenv/core.py @@ -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: