Commit 5f86795d authored by rusty1s's avatar rusty1s
Browse files

use ninja

parent a40cf3f7
...@@ -64,8 +64,8 @@ def get_extensions(): ...@@ -64,8 +64,8 @@ def get_extensions():
install_requires = [] install_requires = []
setup_requires = ['pytest-runner'] setup_requires = []
tests_require = ['pytest', 'pytest-cov'] tests_require = ['pytest', 'pytest-runner', 'pytest-cov']
setup( setup(
name='torch_spline_conv', name='torch_spline_conv',
...@@ -88,8 +88,7 @@ setup( ...@@ -88,8 +88,7 @@ setup(
tests_require=tests_require, tests_require=tests_require,
ext_modules=get_extensions() if not BUILD_DOCS else [], ext_modules=get_extensions() if not BUILD_DOCS else [],
cmdclass={ cmdclass={
'build_ext': 'build_ext': BuildExtension.with_options(no_python_abi_suffix=True)
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