"vscode:/vscode.git/clone" did not exist on "db61375f1ac89fe4e9ac2416125fbebd8772c231"
Commit b1d39531 authored by rusty1s's avatar rusty1s
Browse files

faster build on travis

parent f99e7ffb
......@@ -113,7 +113,7 @@ install:
- pip install flake8
- pip install codecov
- pip install scipy==1.4.1
- pip install .[test]
- pip install -e .
script:
- flake8 .
- python setup.py test
......
......@@ -101,7 +101,8 @@ setup(
extras_require={'test': tests_require},
ext_modules=get_extensions() if not BUILD_DOCS else [],
cmdclass={
'build_ext': BuildExtension.with_options(no_python_abi_suffix=True)
'build_ext':
BuildExtension.with_options(no_python_abi_suffix=True, use_ninja=False)
},
packages=find_packages(),
)
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment