From d8a245dcf6d522dec453979005fde154f66d2ed4 Mon Sep 17 00:00:00 2001 From: Joe Rickerby Date: Sun, 2 Feb 2020 23:05:58 +0000 Subject: [PATCH] Use abspath for constraints file --- cibuildwheel/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/util.py b/cibuildwheel/util.py index aade60b2..5575f7cc 100644 --- a/cibuildwheel/util.py +++ b/cibuildwheel/util.py @@ -86,7 +86,7 @@ def download(url, dest): class DependencyConstraints(object): def __init__(self, base_file_path): assert os.path.exists(base_file_path) - self.base_file_path = base_file_path + self.base_file_path = os.path.abspath(base_file_path) @classmethod def with_defaults(cls):