Skip to content

Commit

Permalink
pyo3-polars 0.12 (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 authored Feb 29, 2024
1 parent fa86780 commit c04d471
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ members = [
]

[workspace.dependencies]
polars = { version = "0.37.0", default-features = false }
polars-core = { version = "0.37.0", default-features = false }
polars-ffi = { version = "0.37.0", default-features = false }
polars-plan = { version = "0.37.0", default-feautres = false }
polars-lazy = { version = "0.37.0", default-features = false }
polars = { version = "0.38.0", default-features = false }
polars-core = { version = "0.38.0", default-features = false }
polars-ffi = { version = "0.38.0", default-features = false }
polars-plan = { version = "0.38.0", default-feautres = false }
polars-lazy = { version = "0.38.0", default-features = false }
2 changes: 1 addition & 1 deletion pyo3-polars-derive/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3-polars-derive"
version = "0.5.0"
version = "0.6.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
4 changes: 2 additions & 2 deletions pyo3-polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3-polars"
version = "0.11.2"
version = "0.12.0"
edition = "2021"
license = "MIT"
readme = "../README.md"
Expand All @@ -17,7 +17,7 @@ polars-ffi = { workspace = true, optional = true }
polars-lazy = { workspace = true, optional = true }
polars-plan = { workspace = true, optional = true }
pyo3 = "0.20.0"
pyo3-polars-derive = { version = "0.5.0", path = "../pyo3-polars-derive", optional = true }
pyo3-polars-derive = { version = "0.6.0", path = "../pyo3-polars-derive", optional = true }
serde = { version = "1", optional = true }
serde-pickle = { version = "1", optional = true }
thiserror = "1"
Expand Down
2 changes: 1 addition & 1 deletion pyo3-polars/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ impl<'a> FromPyObject<'a> for PyDataFrame {
let s = pyseries.extract::<PySeries>()?.0;
columns.push(s);
}
Ok(PyDataFrame(DataFrame::new_no_checks(columns)))
unsafe { Ok(PyDataFrame(DataFrame::new_no_checks(columns))) }
}
}

Expand Down

0 comments on commit c04d471

Please sign in to comment.