We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 164a8c1 commit cf76e6bCopy full SHA for cf76e6b
src/lib.rs
@@ -69,7 +69,6 @@ impl CVM {
69
#[pymodule]
70
fn count_distinct(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
71
m.add_class::<CVM>()?;
72
- // m.add_function(wrap_pyfunction!(version, m)?)?;
73
-
+ m.add("__version__", env!("CARGO_PKG_VERSION"))?;
74
Ok(())
75
}
0 commit comments