From 4fb7874ca3c7c5982dba1bb5cbe6df4eb23e2136 Mon Sep 17 00:00:00 2001 From: heitorlessa Date: Sun, 31 May 2020 20:13:52 +0100 Subject: [PATCH] chore: address PR feedback Signed-off-by: heitorlessa --- cibuildwheel/__main__.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/cibuildwheel/__main__.py b/cibuildwheel/__main__.py index 77b5aa99..9e4e57ae 100644 --- a/cibuildwheel/__main__.py +++ b/cibuildwheel/__main__.py @@ -310,18 +310,6 @@ def detect_warnings(platform: str, build_options: BuildOptions) -> List[str]: def detect_setup_pyproject_existence(package_dir: str) -> bool: - """Detects whether setup.py, or pyproject.toml is at package dir - - Parameters - ---------- - package_dir : str - Package directory path - - Returns - ------- - bool - Whether setup.py, or pyproject.toml exists - """ exists = False if os.path.exists(os.path.join(package_dir, 'setup.py')): exists = True