style: activate string normalization
This commit is contained in:
committed by
Henry Schreiner
parent
d1900f6a05
commit
bda76b21cb
+66
-66
@@ -7,24 +7,24 @@ from typing import IO, AnyStr, Optional, Union
|
||||
|
||||
from cibuildwheel.util import CIProvider, detect_ci_provider
|
||||
|
||||
DEFAULT_FOLD_PATTERN = ('{name}', '')
|
||||
DEFAULT_FOLD_PATTERN = ("{name}", "")
|
||||
FOLD_PATTERNS = {
|
||||
'azure': ('##[group]{name}', '##[endgroup]'),
|
||||
'travis': ('travis_fold:start:{identifier}\n{name}', 'travis_fold:end:{identifier}'),
|
||||
'github': ('::group::{name}', '::endgroup::{name}'),
|
||||
"azure": ("##[group]{name}", "##[endgroup]"),
|
||||
"travis": ("travis_fold:start:{identifier}\n{name}", "travis_fold:end:{identifier}"),
|
||||
"github": ("::group::{name}", "::endgroup::{name}"),
|
||||
}
|
||||
|
||||
PLATFORM_IDENTIFIER_DESCIPTIONS = {
|
||||
'manylinux_x86_64': 'manylinux x86_64',
|
||||
'manylinux_i686': 'manylinux i686',
|
||||
'manylinux_aarch64': 'manylinux aarch64',
|
||||
'manylinux_ppc64le': 'manylinux ppc64le',
|
||||
'manylinux_s390x': 'manylinux s390x',
|
||||
'win32': 'Windows 32bit',
|
||||
'win_amd64': 'Windows 64bit',
|
||||
'macosx_x86_64': 'macOS x86_64',
|
||||
'macosx_universal2': 'macOS Universal 2 - x86_64 and arm64',
|
||||
'macosx_arm64': 'macOS arm64 - Apple Silicon',
|
||||
"manylinux_x86_64": "manylinux x86_64",
|
||||
"manylinux_i686": "manylinux i686",
|
||||
"manylinux_aarch64": "manylinux aarch64",
|
||||
"manylinux_ppc64le": "manylinux ppc64le",
|
||||
"manylinux_s390x": "manylinux s390x",
|
||||
"win32": "Windows 32bit",
|
||||
"win_amd64": "Windows 64bit",
|
||||
"macosx_x86_64": "macOS x86_64",
|
||||
"macosx_universal2": "macOS Universal 2 - x86_64 and arm64",
|
||||
"macosx_arm64": "macOS arm64 - Apple Silicon",
|
||||
}
|
||||
|
||||
|
||||
@@ -38,33 +38,33 @@ class Logger:
|
||||
active_fold_group_name: Optional[str] = None
|
||||
|
||||
def __init__(self) -> None:
|
||||
if sys.platform == 'win32' and hasattr(sys.stdout, 'reconfigure'):
|
||||
if sys.platform == "win32" and hasattr(sys.stdout, "reconfigure"):
|
||||
# the encoding on Windows can be a 1-byte charmap, but all CIs
|
||||
# support utf8, so we hardcode that
|
||||
sys.stdout.reconfigure(encoding='utf8')
|
||||
sys.stdout.reconfigure(encoding="utf8")
|
||||
|
||||
self.unicode_enabled = file_supports_unicode(sys.stdout)
|
||||
|
||||
ci_provider = detect_ci_provider()
|
||||
|
||||
if ci_provider == CIProvider.azure_pipelines:
|
||||
self.fold_mode = 'azure'
|
||||
self.fold_mode = "azure"
|
||||
self.colors_enabled = True
|
||||
|
||||
elif ci_provider == CIProvider.github_actions:
|
||||
self.fold_mode = 'github'
|
||||
self.fold_mode = "github"
|
||||
self.colors_enabled = True
|
||||
|
||||
elif ci_provider == CIProvider.travis_ci:
|
||||
self.fold_mode = 'travis'
|
||||
self.fold_mode = "travis"
|
||||
self.colors_enabled = True
|
||||
|
||||
elif ci_provider == CIProvider.appveyor:
|
||||
self.fold_mode = 'disabled'
|
||||
self.fold_mode = "disabled"
|
||||
self.colors_enabled = True
|
||||
|
||||
else:
|
||||
self.fold_mode = 'disabled'
|
||||
self.fold_mode = "disabled"
|
||||
self.colors_enabled = file_supports_color(sys.stdout)
|
||||
|
||||
def build_start(self, identifier: str) -> None:
|
||||
@@ -72,8 +72,8 @@ class Logger:
|
||||
c = self.colors
|
||||
description = build_description_from_identifier(identifier)
|
||||
print()
|
||||
print(f'{c.bold}{c.blue}Building {identifier} wheel{c.end}')
|
||||
print(f'{description}')
|
||||
print(f"{c.bold}{c.blue}Building {identifier} wheel{c.end}")
|
||||
print(f"{description}")
|
||||
print()
|
||||
|
||||
self.build_start_time = time.time()
|
||||
@@ -90,7 +90,7 @@ class Logger:
|
||||
|
||||
print()
|
||||
print(
|
||||
f'{c.green}{s.done} {c.end}{self.active_build_identifier} finished in {duration:.2f}s'
|
||||
f"{c.green}{s.done} {c.end}{self.active_build_identifier} finished in {duration:.2f}s"
|
||||
)
|
||||
self.build_start_time = None
|
||||
self.active_build_identifier = None
|
||||
@@ -107,9 +107,9 @@ class Logger:
|
||||
s = self.symbols
|
||||
duration = time.time() - self.step_start_time
|
||||
if success:
|
||||
print(f'{c.green}{s.done} {c.end}{duration:.2f}s'.rjust(78))
|
||||
print(f"{c.green}{s.done} {c.end}{duration:.2f}s".rjust(78))
|
||||
else:
|
||||
print(f'{c.red}{s.error} {c.end}{duration:.2f}s'.rjust(78))
|
||||
print(f"{c.red}{s.error} {c.end}{duration:.2f}s".rjust(78))
|
||||
|
||||
self.step_start_time = None
|
||||
|
||||
@@ -118,18 +118,18 @@ class Logger:
|
||||
self.error(error)
|
||||
|
||||
def warning(self, message: str) -> None:
|
||||
if self.fold_mode == 'github':
|
||||
print(f'::warning::{message}\n', file=sys.stderr)
|
||||
if self.fold_mode == "github":
|
||||
print(f"::warning::{message}\n", file=sys.stderr)
|
||||
else:
|
||||
c = self.colors
|
||||
print(f'{c.yellow}Warning{c.end}: {message}\n', file=sys.stderr)
|
||||
print(f"{c.yellow}Warning{c.end}: {message}\n", file=sys.stderr)
|
||||
|
||||
def error(self, error: Union[BaseException, str]) -> None:
|
||||
if self.fold_mode == 'github':
|
||||
print(f'::error::{error}\n', file=sys.stderr)
|
||||
if self.fold_mode == "github":
|
||||
print(f"::error::{error}\n", file=sys.stderr)
|
||||
else:
|
||||
c = self.colors
|
||||
print(f'{c.bright_red}Error{c.end}: {error}\n', file=sys.stderr)
|
||||
print(f"{c.bright_red}Error{c.end}: {error}\n", file=sys.stderr)
|
||||
|
||||
def _start_fold_group(self, name: str) -> None:
|
||||
self._end_fold_group()
|
||||
@@ -152,16 +152,16 @@ class Logger:
|
||||
self.active_fold_group_name = None
|
||||
|
||||
def _fold_group_identifier(self, name: str) -> str:
|
||||
'''
|
||||
"""
|
||||
Travis doesn't like fold groups identifiers that have spaces in. This
|
||||
method converts them to ascii identifiers
|
||||
'''
|
||||
"""
|
||||
# whitespace to underscores
|
||||
identifier = re.sub(r'\s+', '_', name)
|
||||
identifier = re.sub(r"\s+", "_", name)
|
||||
# remove non-alphanum
|
||||
identifier = re.sub(r'[^A-Za-z\d_]+', '', identifier)
|
||||
identifier = re.sub(r"[^A-Za-z\d_]+", "", identifier)
|
||||
# trim underscores
|
||||
identifier = identifier.strip('_')
|
||||
identifier = identifier.strip("_")
|
||||
# lowercase, shorten
|
||||
return identifier.lower()[:20]
|
||||
|
||||
@@ -181,53 +181,53 @@ class Logger:
|
||||
|
||||
|
||||
def build_description_from_identifier(identifier: str) -> str:
|
||||
python_identifier, _, platform_identifier = identifier.partition('-')
|
||||
python_identifier, _, platform_identifier = identifier.partition("-")
|
||||
|
||||
build_description = ''
|
||||
build_description = ""
|
||||
|
||||
python_interpreter = python_identifier[0:2]
|
||||
python_version = python_identifier[2:4]
|
||||
|
||||
if python_interpreter == 'cp':
|
||||
build_description += 'CPython'
|
||||
elif python_interpreter == 'pp':
|
||||
build_description += 'PyPy'
|
||||
if python_interpreter == "cp":
|
||||
build_description += "CPython"
|
||||
elif python_interpreter == "pp":
|
||||
build_description += "PyPy"
|
||||
else:
|
||||
raise Exception('unknown python')
|
||||
raise Exception("unknown python")
|
||||
|
||||
build_description += f' {python_version[0]}.{python_version[1]} '
|
||||
build_description += f" {python_version[0]}.{python_version[1]} "
|
||||
|
||||
try:
|
||||
build_description += PLATFORM_IDENTIFIER_DESCIPTIONS[platform_identifier]
|
||||
except KeyError as e:
|
||||
raise Exception('unknown platform') from e
|
||||
raise Exception("unknown platform") from e
|
||||
|
||||
return build_description
|
||||
|
||||
|
||||
class Colors:
|
||||
def __init__(self, *, enabled: bool) -> None:
|
||||
self.red = '\033[31m' if enabled else ''
|
||||
self.green = '\033[32m' if enabled else ''
|
||||
self.yellow = '\033[33m' if enabled else ''
|
||||
self.blue = '\033[34m' if enabled else ''
|
||||
self.cyan = '\033[36m' if enabled else ''
|
||||
self.bright_red = '\033[91m' if enabled else ''
|
||||
self.bright_green = '\033[92m' if enabled else ''
|
||||
self.white = '\033[37m\033[97m' if enabled else ''
|
||||
self.red = "\033[31m" if enabled else ""
|
||||
self.green = "\033[32m" if enabled else ""
|
||||
self.yellow = "\033[33m" if enabled else ""
|
||||
self.blue = "\033[34m" if enabled else ""
|
||||
self.cyan = "\033[36m" if enabled else ""
|
||||
self.bright_red = "\033[91m" if enabled else ""
|
||||
self.bright_green = "\033[92m" if enabled else ""
|
||||
self.white = "\033[37m\033[97m" if enabled else ""
|
||||
|
||||
self.bg_grey = '\033[48;5;235m' if enabled else ''
|
||||
self.bg_grey = "\033[48;5;235m" if enabled else ""
|
||||
|
||||
self.bold = '\033[1m' if enabled else ''
|
||||
self.faint = '\033[2m' if enabled else ''
|
||||
self.bold = "\033[1m" if enabled else ""
|
||||
self.faint = "\033[2m" if enabled else ""
|
||||
|
||||
self.end = '\033[0m' if enabled else ''
|
||||
self.end = "\033[0m" if enabled else ""
|
||||
|
||||
|
||||
class Symbols:
|
||||
def __init__(self, *, unicode: bool) -> None:
|
||||
self.done = '✓' if unicode else 'done'
|
||||
self.error = '✕' if unicode else 'failed'
|
||||
self.done = "✓" if unicode else "done"
|
||||
self.error = "✕" if unicode else "failed"
|
||||
|
||||
|
||||
def file_supports_color(file_obj: IO[AnyStr]) -> bool:
|
||||
@@ -235,7 +235,7 @@ def file_supports_color(file_obj: IO[AnyStr]) -> bool:
|
||||
Returns True if the running system's terminal supports color.
|
||||
"""
|
||||
plat = sys.platform
|
||||
supported_platform = plat != 'win32' or 'ANSICON' in os.environ
|
||||
supported_platform = plat != "win32" or "ANSICON" in os.environ
|
||||
|
||||
is_a_tty = file_is_a_tty(file_obj)
|
||||
|
||||
@@ -243,21 +243,21 @@ def file_supports_color(file_obj: IO[AnyStr]) -> bool:
|
||||
|
||||
|
||||
def file_is_a_tty(file_obj: IO[AnyStr]) -> bool:
|
||||
return hasattr(file_obj, 'isatty') and file_obj.isatty()
|
||||
return hasattr(file_obj, "isatty") and file_obj.isatty()
|
||||
|
||||
|
||||
def file_supports_unicode(file_obj: IO[AnyStr]) -> bool:
|
||||
encoding = getattr(file_obj, 'encoding', None)
|
||||
encoding = getattr(file_obj, "encoding", None)
|
||||
if not encoding:
|
||||
return False
|
||||
|
||||
codec_info = codecs.lookup(encoding)
|
||||
|
||||
return 'utf' in codec_info.name
|
||||
return "utf" in codec_info.name
|
||||
|
||||
|
||||
'''
|
||||
"""
|
||||
Global instance of the Logger.
|
||||
'''
|
||||
"""
|
||||
# (there's only one stdout per-process, so a global instance is justified)
|
||||
log = Logger()
|
||||
|
||||
Reference in New Issue
Block a user