Skip to content

Commit

Permalink
Add __version__
Browse files Browse the repository at this point in the history
  • Loading branch information
urschrei committed Jun 27, 2024
1 parent 164a8c1 commit cf76e6b
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,6 @@ impl CVM {
#[pymodule]
fn count_distinct(_py: Python, m: Bound<'_, PyModule>) -> PyResult<()> {
m.add_class::<CVM>()?;
// m.add_function(wrap_pyfunction!(version, m)?)?;

m.add("__version__", env!("CARGO_PKG_VERSION"))?;
Ok(())
}

0 comments on commit cf76e6b

Please sign in to comment.