We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 259bfdb + 4e6d97d commit 343ac6fCopy full SHA for 343ac6f
setuptools/_distutils/spawn.py
@@ -31,7 +31,7 @@ def _inject_macos_ver(env: Mapping[str:str] | None) -> Mapping[str:str] | None:
31
if platform.system() != 'Darwin':
32
return env
33
34
- from distutils.util import MACOSX_VERSION_VAR, get_macosx_target_ver
+ from .util import MACOSX_VERSION_VAR, get_macosx_target_ver
35
36
target_ver = get_macosx_target_ver()
37
update = {MACOSX_VERSION_VAR: target_ver} if target_ver else {}
0 commit comments