Skip to content

Commit 147eb72

Browse files
authored
gh-96628: remove deprecated and ignored arg of sysconfig.is_python_build() (GH-96629)
1 parent 05692c6 commit 147eb72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/distutils/command/install.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ def finalize_options(self):
323323
self.config_vars['userbase'] = self.install_userbase
324324
self.config_vars['usersite'] = self.install_usersite
325325

326-
if sysconfig.is_python_build(True):
326+
if sysconfig.is_python_build():
327327
self.config_vars['srcdir'] = sysconfig.get_config_var('srcdir')
328328

329329
self.expand_basedirs()

0 commit comments

Comments
 (0)