From d781111941ddd4c9e48c8828a63d0b9a451d0004 Mon Sep 17 00:00:00 2001 From: Grzegorz Bokota Date: Fri, 9 Oct 2020 23:10:44 +0200 Subject: [PATCH] add str representation to DependencyConstraints --- cibuildwheel/util.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cibuildwheel/util.py b/cibuildwheel/util.py index 891f0f28..38d61148 100644 --- a/cibuildwheel/util.py +++ b/cibuildwheel/util.py @@ -107,6 +107,9 @@ class DependencyConstraints: else: return self.base_file_path + def __str__(self): + return f"File '{self.base_file_path}'" + class BuildOptions(NamedTuple): package_dir: Path