File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -750,7 +750,7 @@ def __init__(
750750 # prepare environment
751751 self ._ninja = _env_ninja_command ()
752752 if self ._ninja is None :
753- raise ConfigError (f'Could not find ninja version { _NINJA_REQUIRED_VERSION } or newer.' )
753+ raise ConfigError (f'could not find ninja version { _NINJA_REQUIRED_VERSION } or newer.' )
754754 self ._env .setdefault ('NINJA' , self ._ninja )
755755
756756 # setuptools-like ARCHFLAGS environment variable support
@@ -759,7 +759,7 @@ def __init__(
759759 if archflags is not None :
760760 arch , * other = filter (None , (x .strip () for x in archflags .split ('-arch' )))
761761 if other :
762- raise ConfigError (f'Multi -architecture builds are not supported but $ARCHFLAGS={ archflags !r} ' )
762+ raise ConfigError (f'multi -architecture builds are not supported but $ARCHFLAGS={ archflags !r} ' )
763763 macver , _ , nativearch = platform .mac_ver ()
764764 if arch != nativearch :
765765 x = self ._env .setdefault ('_PYTHON_HOST_PLATFORM' , f'macosx-{ macver } -{ arch } ' )
You can’t perform that action at this time.
0 commit comments