Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
polars_hash/target
/pyo3-polars/target
rust-toolchain.toml
*.pyc
Expand Down Expand Up @@ -106,4 +107,4 @@ Cargo.lock
# MSVC Windows builds of rustc generate these, which store debugging information
*.pdb

# End of https://www.toptal.com/developers/gitignore/api/linux,rust,python,osx
# End of https://www.toptal.com/developers/gitignore/api/linux,rust,python,osx
8 changes: 4 additions & 4 deletions polars_hash/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ name = "polars_hash"
crate-type = ["cdylib"]

[dependencies]
polars = { version = "0.44.2", features = ["dtype-struct"] }
polars-arrow = { version = "0.44.2" }
pyo3 = { version = "0.21", features = ["extension-module", "abi3-py38"] }
pyo3-polars = { version = "0.18.0", features = ["derive", "dtype-struct"] }
polars = { version = "0.45", features = ["dtype-struct"] }
polars-arrow = { version = "0.45" }
pyo3 = { version = "0.22", features = ["extension-module", "abi3-py38"] }
pyo3-polars = { version = "0.19", features = ["derive", "dtype-struct"] }
serde = { version = "1", features = ["derive"] }
wyhash = { version = "0.5.0" }
geohash = { version = "0.13.1" }
Expand Down
2 changes: 1 addition & 1 deletion polars_hash/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "maturin"
name = "polars-hash"
requires-python = ">=3.8"
dependencies = [
'polars >= 1.5.0'
'polars >= 1.32.0'
]
classifiers = [
"Programming Language :: Rust",
Expand Down
2 changes: 1 addition & 1 deletion polars_hash/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ mod murmurhash_hashers;
mod sha_hashers;
mod xxhash_hashers;

use pyo3::types::PyModule;
use pyo3::types::{PyModule, PyModuleMethods};
use pyo3::{pymodule, Bound, PyResult, Python};
use pyo3_polars::PolarsAllocator;

Expand Down
Loading