Skip to content

Commit 21e2db6

Browse files
committed
Update to fix non-cython builds
1 parent 41953f7 commit 21e2db6

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ def readme():
3434

3535
configuration = {
3636
'name' : 'hdbscan',
37-
'version' : '0.8',
37+
'version' : '0.8.1',
3838
'description' : 'Clustering based on density with variable density clusters',
3939
'long_description' : readme(),
4040
'classifiers' : [
41-
'Development Status :: 3 - Alpha',
41+
'Development Status :: 4 - Beta',
4242
'Intended Audience :: Science/Research',
4343
'Intended Audience :: Developers',
4444
'License :: OSI Approved',
@@ -74,6 +74,9 @@ def readme():
7474
if not HAVE_CYTHON:
7575
_hdbscan_tree.sources[0] = '_hdbscan_tree.c'
7676
_hdbscan_linkage.sources[0] = '_hdbscan_linkage.c'
77+
_hdbscan_boruvka.sources[0] = '_hdbscan_boruvka.c'
78+
_hdbscan_reachability.sources[0] = '_hdbscan_reachability.c'
79+
dist_metrics.sources[0] = 'dist_metric.c'
7780
configuration['install_requires'] = ['scikit-learn>=0.16']
7881

7982
setup(**configuration)

0 commit comments

Comments
 (0)