diff --git a/poetry/installation/chooser.py b/poetry/installation/chooser.py index db9e0a9c357..6d9e92e0b1f 100644 --- a/poetry/installation/chooser.py +++ b/poetry/installation/chooser.py @@ -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)