File tree Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Expand file tree Collapse file tree 2 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 1- # UNRELEASED
1+ # 0.6.5
2+
3+ ## Additions
4+ - Clustering algorithm for [ PointGroup] ( https://arxiv.org/pdf/2004.01658.pdf )
5+
6+ ## Change
7+ - Force no ninja for the compilation
8+
9+ # 0.6.4
210
311## Bug fix
412- CPU version works for MacOS
Original file line number Diff line number Diff line change @@ -61,13 +61,17 @@ def get_ext_modules():
6161
6262
6363def get_cmdclass ():
64- return {"build_ext" : BuildExtension }
64+ return {
65+ "build_ext" : BuildExtension .with_options (
66+ no_python_abi_suffix = True , use_ninja = False
67+ )
68+ }
6569
6670
6771requirements = ["torch>=1.1.0" , "numba" ]
6872
6973url = "https://github.com/nicolas-chaulet/torch-points-kernels"
70- __version__ = "0.6.4 "
74+ __version__ = "0.6.5 "
7175setup (
7276 name = "torch-points-kernels" ,
7377 version = __version__ ,
You can’t perform that action at this time.
0 commit comments