Skip to content

Commit

Permalink
fix call
Browse files Browse the repository at this point in the history
  • Loading branch information
jaimergp committed May 18, 2024
1 parent 3dd6657 commit 6875927
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion conda_pypi/dependencies/pip.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def _analyze_with_pip(
prefix: str | None = None,
force_reinstall: bool = False,
) -> tuple[dict[str, list[str]], dict[str, list[str]]]:
report = dry_run_pip_json(prefix, packages, force_reinstall)
report = dry_run_pip_json(("--prefix", prefix, *packages), force_reinstall)
deps_from_pip = defaultdict(list)
conda_deps = defaultdict(list)
for item in report["install"]:
Expand Down

0 comments on commit 6875927

Please sign in to comment.