Skip to content

Commit 79e8133

Browse files
Prep for release
1 parent 1cb2fe2 commit 79e8133

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
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

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,13 +61,17 @@ def get_ext_modules():
6161

6262

6363
def 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

6771
requirements = ["torch>=1.1.0", "numba"]
6872

6973
url = "https://github.com/nicolas-chaulet/torch-points-kernels"
70-
__version__ = "0.6.4"
74+
__version__ = "0.6.5"
7175
setup(
7276
name="torch-points-kernels",
7377
version=__version__,

0 commit comments

Comments
 (0)