Commit ad55beb0 by Sébastien Eustace

Fix missing dependency information for some packages

parent 6a88728e
# Change Log # Change Log
## [Unreleased]
### Fixed
- Fixed missing dependency information for some packages.
## [0.11.2] - 2018-07-03 ## [0.11.2] - 2018-07-03
### Fixed ### Fixed
......
...@@ -298,7 +298,7 @@ class PyPiRepository(Repository): ...@@ -298,7 +298,7 @@ class PyPiRepository(Repository):
if "-none-any" not in filename: if "-none-any" not in filename:
continue continue
if not urls: if not urls or "bdist_wheel" not in urls:
# If we don't have urls, we try to take the first one # If we don't have urls, we try to take the first one
# we find and go from there # we find and go from there
if not json_data["urls"]: if not json_data["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