- Timestamp:
- Nov 22, 2017 12:32:57 PM (7 years ago)
- Branches:
- master, magnetic_scatt, release-4.2.2, ticket-1009, ticket-1094-headless, ticket-1242-2d-resolution, ticket-1243, ticket-1249, ticket885, unittest-saveload
- Children:
- 56bc5e7
- Parents:
- 3b0632f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
run.py
r3b0632f r1606b35 115 115 if True or not os.path.exists(build_path): 116 116 import subprocess 117 build_cmd = [sys.executable, "setup.py", "build", "update"]118 if os.name == 'nt':119 build_cmd.append('--compiler=tinycc')120 # need shell=True on windows to keep console box from popping up121 shell = (os.name == 'nt')122 117 with cd(root): 123 subprocess.call( build_cmd, shell=shell)118 subprocess.call((sys.executable, "setup.py", "build", "update"), shell=False) 124 119 125 120 # Put the source trees on the path
Note: See TracChangeset
for help on using the changeset viewer.