File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1+ include *.rst *.txt
2+ recursive-include hdbscan *.py *.pyx *.pxd *.c
Original file line number Diff line number Diff line change 1717 include_dirs = [numpy .get_include ()])
1818_hdbscan_linkage = Extension ('hdbscan._hdbscan_linkage' ,
1919 sources = ['hdbscan/_hdbscan_linkage.pyx' ],
20- include_dirs = [numpy .get_include ()])
20+ include_dirs = ['hdbscan' , numpy .get_include ()])
2121_hdbscan_boruvka = Extension ('hdbscan._hdbscan_boruvka' ,
2222 sources = ['hdbscan/_hdbscan_boruvka.pyx' ],
23- include_dirs = [numpy .get_include ()])
23+ include_dirs = ['hdbscan' , numpy .get_include ()])
2424_hdbscan_reachability = Extension ('hdbscan._hdbscan_reachability' ,
2525 sources = ['hdbscan/_hdbscan_reachability.pyx' ],
2626 include_dirs = [numpy .get_include ()])
@@ -34,7 +34,7 @@ def readme():
3434
3535configuration = {
3636 'name' : 'hdbscan' ,
37- 'version' : '0.4.1 ' ,
37+ 'version' : '0.4.2 ' ,
3838 'description' : 'Clustering based on density with variable density clusters' ,
3939 'long_description' : readme (),
4040 'classifiers' : [
You can’t perform that action at this time.
0 commit comments