https://github.com/python/cpython/commit/d43cb4f31a95ee511d86e8adbfa1bea9747d75d3 commit: d43cb4f31a95ee511d86e8adbfa1bea9747d75d3 branch: 3.12 author: Miss Islington (bot) <[email protected]> committer: ambv <[email protected]> date: 2025-06-11T17:00:01+02:00 summary:
[3.12] gh-132415: Use shutil.which() in missing_compiler_executable() (GH-132906) (GH-135392) Replace deprecated distutils.spawn.find_executable() with shutil.which() in missing_compiler_executable() of test.support. (cherry picked from commit de6482eda3a46cc9c9a03fb9ba57295ab99b4722) Co-authored-by: Victor Stinner <[email protected]> files: M Lib/test/support/__init__.py diff --git a/Lib/test/support/__init__.py b/Lib/test/support/__init__.py index c8993476240de1..eb971abceb010c 100644 --- a/Lib/test/support/__init__.py +++ b/Lib/test/support/__init__.py @@ -1804,8 +1804,9 @@ def missing_compiler_executable(cmd_names=[]): missing. """ - from setuptools._distutils import ccompiler, sysconfig, spawn + from setuptools._distutils import ccompiler, sysconfig from setuptools import errors + import shutil compiler = ccompiler.new_compiler() sysconfig.customize_compiler(compiler) @@ -1824,7 +1825,7 @@ def missing_compiler_executable(cmd_names=[]): "the '%s' executable is not configured" % name elif not cmd: continue - if spawn.find_executable(cmd[0]) is None: + if shutil.which(cmd[0]) is None: return cmd[0] _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
