From b8dbedcdbed30d5f11dcbc9dcbc68a73040900ab Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 8 Apr 2020 16:43:01 +0200 Subject: [PATCH] Remove explicit object base class of DependencyConstraints --- cibuildwheel/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cibuildwheel/util.py b/cibuildwheel/util.py index 16bd832a..c790aaea 100644 --- a/cibuildwheel/util.py +++ b/cibuildwheel/util.py @@ -78,7 +78,7 @@ def download(url, dest): response.close() -class DependencyConstraints(object): +class DependencyConstraints: def __init__(self, base_file_path): assert os.path.exists(base_file_path) self.base_file_path = os.path.abspath(base_file_path)