Fix #220: Remove py2 from wheel tag. Gracefully handle Cython extension build failure.

This commit is contained in:
Pavel Minaev 2018-03-19 11:59:40 -07:00
parent 3a63c00330
commit 1ea628dbb6
2 changed files with 2 additions and 2 deletions

View file

@ -13,7 +13,7 @@ from setuptools import setup, Extension
if not os.getenv('SKIP_CYTHON_BUILD'):
print('Compiling extension modules (set SKIP_CYTHON_BUILD=1 to omit)')
subprocess.check_call(
subprocess.call(
[sys.executable, 'ptvsd/pydevd/setup_cython.py', 'build_ext', '-i'])
ROOT = os.path.dirname(os.path.abspath(__file__))