Skip to content

Commit

Permalink
install: skip unsupported binary distributions (#3058)
Browse files Browse the repository at this point in the history
Resolves: #3045
  • Loading branch information
abn committed Oct 3, 2020
1 parent 7c15b98 commit 769a90b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion poetry/installation/chooser.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ def choose_for(self, package): # type: (Package) -> Link
):
continue

if link.ext == ".egg":
if link.ext in {".egg", ".exe", ".msi", ".rpm", ".srpm"}:
continue

links.append(link)
Expand Down

0 comments on commit 769a90b

Please sign in to comment.