Skip to content

Commit

Permalink
Fix installing multiple packages with PipInstall (dask#8374)
Browse files Browse the repository at this point in the history
  • Loading branch information
hendrikmakait authored Nov 28, 2023
1 parent a7cf54f commit 9503951
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion distributed/diagnostics/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -711,7 +711,7 @@ def __call__(self) -> None:
# environment variables
# See https://pip.pypa.io/en/stable/reference/requirements-file-format/#using-environment-variables
with tempfile.NamedTemporaryFile(mode="w+") as f:
f.writelines(self.packages)
f.write("\n".join(self.packages))
f.flush()
proc = subprocess.Popen(
[
Expand Down

0 comments on commit 9503951

Please sign in to comment.