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 8f197ea commit c9aa6f1Copy full SHA for c9aa6f1
build.py
@@ -10,14 +10,14 @@
10
import shutil
11
from multiprocessing import Pool
12
13
-from setuptools import sandbox
14
from hscommon import sphinxgen
15
from hscommon.build import (
16
add_to_pythonpath,
17
print_and_do,
18
fix_qt_resource_file,
19
)
20
from hscommon import loc
+import subprocess
21
22
23
def parse_args():
@@ -118,7 +118,7 @@ def build_normpo():
118
def build_pe_modules():
119
print("Building PE Modules")
120
# Leverage setup.py to build modules
121
- sandbox.run_setup("setup.py", ["build_ext", "--inplace"])
+ subprocess.check_call([sys.executable, "setup.py", "build_ext", "--inplace"])
122
123
124
def build_normal():
0 commit comments