We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99e7ff commit b1d3953Copy full SHA for b1d3953
.travis.yml
@@ -113,7 +113,7 @@ install:
113
- pip install flake8
114
- pip install codecov
115
- pip install scipy==1.4.1
116
- - pip install .[test]
+ - pip install -e .
117
script:
118
- flake8 .
119
- python setup.py test
setup.py
@@ -101,7 +101,8 @@ def get_extensions():
101
extras_require={'test': tests_require},
102
ext_modules=get_extensions() if not BUILD_DOCS else [],
103
cmdclass={
104
- 'build_ext': BuildExtension.with_options(no_python_abi_suffix=True)
+ 'build_ext':
105
+ BuildExtension.with_options(no_python_abi_suffix=True, use_ninja=False)
106
},
107
packages=find_packages(),
108
)
0 commit comments