Skip to content

Commit

Permalink
fixup! simplify joining pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
webknjaz authored Dec 10, 2024
1 parent 0665558 commit 97fa48f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion piptools/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ def _temporary_constraints_file_set_for_pip(
# Write packages to upgrade to a temporary file to set as
# constraints for the installation to the builder environment,
# in case build requirements are among them
tmpfile.write("\n".join(package for package in upgrade_packages))
tmpfile.write("\n".join(upgrade_packages))
tmpfile.flush()

with _env_var("PIP_CONSTRAINT", tmpfile.name):
Expand Down

0 comments on commit 97fa48f

Please sign in to comment.