mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
Merge pull request #4652 from nid5/4642-fix
4642 fix pipenv lock --pre doesn't include prerelease dependencies
This commit is contained in:
@@ -0,0 +1 @@
|
||||
Fix bug preventing use of pipenv lock --pre
|
||||
@@ -705,6 +705,8 @@ class Resolver(object):
|
||||
pip_args.append("--no-use-pep517")
|
||||
if build_isolation is False:
|
||||
pip_args.append("--no-build-isolation")
|
||||
if self.pre:
|
||||
pip_args.append("--pre")
|
||||
pip_args.extend(["--cache-dir", environments.PIPENV_CACHE_DIR])
|
||||
return pip_args
|
||||
|
||||
|
||||
Reference in New Issue
Block a user