removed '--name' pieces for #102

This commit is contained in:
corey.d.mccarty
2018-11-05 11:47:31 -05:00
parent 8dd71189b2
commit 2ca6500bba
6 changed files with 1 additions and 50 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ def main():
try:
project_setup_py = os.path.join(project_dir, 'setup.py')
name_output = subprocess.check_output([sys.executable, project_setup_py, '--name'],
name_output = subprocess.check_output([sys.executable, project_setup_py],
universal_newlines=True)
except subprocess.CalledProcessError as err:
if not os.path.exists(project_setup_py):
-1
View File
@@ -135,7 +135,6 @@ def build(project_dir, output_dir, test_command, test_requires, before_build, bu
try:
run_docker(['create',
'--env', 'CIBUILDWHEEL',
'--name', container_name,
'-i',
'-v', '/:/host', # ignored on Circle
docker_image, '/bin/bash'])