From d0d3ebbc7d80344f758d38e12e4619b7b3c72293 Mon Sep 17 00:00:00 2001 From: Arun Babu Neelicattu Date: Sat, 3 Oct 2020 10:27:03 +0200 Subject: [PATCH] install: skip unsupported binary distributions Resolves: #3045 --- poetry/installation/chooser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)