Commit 489ee37c by Sébastien Eustace

Fix url selection for PyPI packages

parent a1b97707
...@@ -295,7 +295,7 @@ class PyPiRepository(Repository): ...@@ -295,7 +295,7 @@ class PyPiRepository(Repository):
urls[dist_type] = url["url"] urls[dist_type] = url["url"]
if "sdist" in url and "bdist_wheel" not in urls: if "sdist" in urls and "bdist_wheel" not in urls:
# If can't found a universal wheel # If can't found a universal wheel
# but we found an sdist, inspect the sdist first # but we found an sdist, inspect the sdist first
info = self._get_info_from_urls(urls) info = self._get_info_from_urls(urls)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment