Skip to content

Commit b1d3953

Browse files
committed
faster build on travis
1 parent f99e7ff commit b1d3953

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ install:
113113
- pip install flake8
114114
- pip install codecov
115115
- pip install scipy==1.4.1
116-
- pip install .[test]
116+
- pip install -e .
117117
script:
118118
- flake8 .
119119
- python setup.py test

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ def get_extensions():
101101
extras_require={'test': tests_require},
102102
ext_modules=get_extensions() if not BUILD_DOCS else [],
103103
cmdclass={
104-
'build_ext': BuildExtension.with_options(no_python_abi_suffix=True)
104+
'build_ext':
105+
BuildExtension.with_options(no_python_abi_suffix=True, use_ninja=False)
105106
},
106107
packages=find_packages(),
107108
)

0 commit comments

Comments
 (0)