Skip to content

Commit

Permalink
Merge pull request #3203 from jxltom/continue-fix-3188
Browse files Browse the repository at this point in the history
Pass requirements para to only in get_requirements
  • Loading branch information
techalchemy authored Nov 12, 2018
2 parents b96cd81 + c270562 commit 1c9b929
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pipenv/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -721,7 +721,7 @@ def cleanup_procs(procs, concurrent):
# Allow pip to resolve dependencies when in skip-lock mode.
no_deps = not skip_lock
failed_deps_list = []
deps_list = list(lockfile.get_requirements(dev=dev, only=True))
deps_list = list(lockfile.get_requirements(dev=dev, only=requirements))
if requirements:
index_args = prepare_pip_source_args(project.sources)
index_args = " ".join(index_args).replace(" -", "\n-")
Expand Down

0 comments on commit 1c9b929

Please sign in to comment.