Skip to content

Commit

Permalink
Set platform to any when running pip install (#47)
Browse files Browse the repository at this point in the history
We want to vendor only Python-only distributions.

Co-authored-by: David Fritzsche <dfritzsche@daffi.net>
  • Loading branch information
davidfritzsche and David Fritzsche committed Oct 4, 2022
1 parent 529efb1 commit a8706ae
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/vendoring/tasks/vendor.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ def download_libraries(requirements: Path, destination: Path) -> None:
command = [
"pip",
"install",
"--platform",
"any",
"-t",
str(destination),
"-r",
Expand Down

0 comments on commit a8706ae

Please sign in to comment.