Merge branch 'master' into patch-2

This commit is contained in:
Dan Ryan
2018-04-25 22:32:13 -04:00
committed by GitHub
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -10,6 +10,7 @@
- Remove GPL'ed code.
- Make imports lazy to improve initial load time.
- Extra path searching for python at runtime.
- Shellquote paths to requirement files in case of spaces on windows.
- Require `--python` values to exist when passing a path.
- Bugfix for environment variable expansion in 'unlocked' pipfiles.
- Bugfix for `--deploy` flag.
+1 -1
View File
@@ -1476,7 +1476,7 @@ def pip_install(
if package_name.startswith('-e '):
install_reqs = ' -e "{0}"'.format(package_name.split('-e ')[1])
elif r:
install_reqs = ' -r {0}'.format(r)
install_reqs = ' -r {0}'.format(escape_grouped_arguments(r))
else:
install_reqs = ' "{0}"'.format(package_name)
# Skip hash-checking mode, when appropriate.