corrected as per notations from @YannickJadoul on #113

This commit is contained in:
unknown
2018-11-29 02:44:19 +00:00
parent c4822ebdd6
commit 3d23cbf2a6
6 changed files with 62 additions and 0 deletions
+5
View File
@@ -2,6 +2,11 @@ import os, sys
from setuptools import setup, Extension
# 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'])],