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__(
750
750
# prepare environment
751
751
self ._ninja = _env_ninja_command ()
752
752
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.' )
754
754
self ._env .setdefault ('NINJA' , self ._ninja )
755
755
756
756
# setuptools-like ARCHFLAGS environment variable support
@@ -759,7 +759,7 @@ def __init__(
759
759
if archflags is not None :
760
760
arch , * other = filter (None , (x .strip () for x in archflags .split ('-arch' )))
761
761
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} ' )
763
763
macver , _ , nativearch = platform .mac_ver ()
764
764
if arch != nativearch :
765
765
x = self ._env .setdefault ('_PYTHON_HOST_PLATFORM' , f'macosx-{ macver } -{ arch } ' )
You can’t perform that action at this time.
0 commit comments