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.
1 parent 6098745 commit 787846dCopy full SHA for 787846d
setuptools/_distutils/command/build.py
@@ -111,6 +111,7 @@ def finalize_options(self): # noqa: C901
111
self.build_scripts = os.path.join(
112
self.build_base, 'scripts-%d.%d' % sys.version_info[:2]
113
)
114
+ os.makedirs(self.build_scripts, exist_ok=True)
115
116
if self.executable is None and sys.executable:
117
self.executable = os.path.normpath(sys.executable)
0 commit comments