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
-6
View File
@@ -2,12 +2,6 @@ import os, sys
from setuptools import setup, Extension
if sys.argv[-1] != '--name':
# check that we're running in the correct docker image as specified in the
# environment options CIBW_MANYLINUX1_*_IMAGE
if 'linux' in sys.platform and not os.path.exists('/dockcross'):
raise Exception('/dockcross directory not found. Is this test running in the correct docker image?')
setup(
name="spam",
ext_modules=[Extension('spam', sources=['spam.c'])],