Commit b1d39531 authored by rusty1s's avatar rusty1s
Browse files

faster build on travis

parent f99e7ffb
...@@ -113,7 +113,7 @@ install: ...@@ -113,7 +113,7 @@ install:
- pip install flake8 - pip install flake8
- pip install codecov - pip install codecov
- pip install scipy==1.4.1 - pip install scipy==1.4.1
- pip install .[test] - pip install -e .
script: script:
- flake8 . - flake8 .
- python setup.py test - python setup.py test
......
...@@ -101,7 +101,8 @@ setup( ...@@ -101,7 +101,8 @@ setup(
extras_require={'test': tests_require}, extras_require={'test': tests_require},
ext_modules=get_extensions() if not BUILD_DOCS else [], ext_modules=get_extensions() if not BUILD_DOCS else [],
cmdclass={ 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(), 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