Don't error out on unmet Python dependencies

Signed-off-by: Roberto Rosario <roberto.rosario.gonzalez@gmail.com>
This commit is contained in:
Roberto Rosario
2019-05-08 19:15:40 -04:00
parent 7b69c2f76e
commit 33a2ca97ec

View File

@@ -597,6 +597,8 @@ class PythonDependency(Dependency):
) is not None
except pkg_resources.DistributionNotFound:
return False
except pkg_resources.VersionConflict:
return False
def get_copyright(self):
if self.copyright_attribute: