File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22
33For changes to the main Rust package, please see < https://github.com/kno10/rust-kmedoids/blob/main/CHANGELOG.md >
44
5+ ## kmedoids 0.3.2 (2022-06-25)
6+
7+ - Rust: small bug fix in PAM BUILD (noticable for tiny data sets with large k only)
8+ - Rust: return less than k centers in BUILD if the total deviation already is 0 (less than k unique points)
9+ - documentation improvement and packaging improvements in Python bindings
10+
511## kmedoids 0.3.1 (2022-04-05)
612
713- fix missing import of warnings on bad parameters
Original file line number Diff line number Diff line change 11[package ]
22edition = " 2021"
33name = " kmedoids"
4- version = " 0.3.1 "
4+ version = " 0.3.2 "
55authors = [" Erich Schubert <erich.schubert@tu-dortmund.de>" , " Lars Lenssen <lars.lenssen@tu-dortmund.de>" ]
66description = " k-Medoids clustering with the FasterPAM algorithm"
77homepage = " https://github.com/kno10/python-kmedoids"
@@ -14,17 +14,14 @@ name = "kmedoids"
1414crate-type = [" cdylib" ]
1515
1616[dependencies ]
17- rustkmedoids = { version = " 0.3.0 " , package = " kmedoids" , git = " https://github.com/kno10/rust-kmedoids" }
17+ rustkmedoids = { version = " 0.3.2 " , package = " kmedoids" , git = " https://github.com/kno10/rust-kmedoids" }
1818numpy = " 0.16"
1919ndarray = " 0.15"
2020rand = " 0.8"
2121rayon = " 1.5"
22- # crossbeam is transitive via rayon, avoid a yanked version warning:
23- # with rayon-core 1.9.2 this can likely be removed
24- crossbeam-utils = {version = " 0.8.8" , optional = true }
2522
2623[dependencies .pyo3 ]
27- version = " 0.16.2 "
24+ version = " 0.16.5 "
2825features = [" extension-module" ]
2926
3027[package .metadata .maturin ]
You can’t perform that action at this time.
0 commit comments