Skip to content

Commit

Permalink
pyo3-polars 0.7.0 <-> matches polars 0.33.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Sep 18, 2023
1 parent 0581f22 commit 141689e
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@ members = [
[workspace.dependencies]
polars = { version = "0.33.2", default-features = false }
polars-core = { version = "0.33.2", default-features = false }
polars-ffi = { ersion = "0.33.2", default-features = false }
polars-ffi = { version = "0.33.2", default-features = false }
polars-plan = { version = "0.33.2", default-feautres = false }
polars-lazy = { version = "0.33.2", default-features = false }
4 changes: 4 additions & 0 deletions pyo3-polars-derive/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
name = "pyo3-polars-derive"
version = "0.1.0"
edition = "2021"
license = "MIT"
readme = "README.md"
repository = "https://github.com/pola-rs/pyo3-polars"
description = "Proc-macro's for pyo3-polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

Expand Down
4 changes: 4 additions & 0 deletions pyo3-polars-derive/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Procedure macros for pyo3-polars

This crate is not intended for direct usage. Use `pyo3-polars` to get the functionality
of this crate.
6 changes: 3 additions & 3 deletions pyo3-polars/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "pyo3-polars"
version = "0.6.0"
version = "0.7.0"
edition = "2021"
license = "MIT"
readme = "../README.md"
repository = "https://github.com/pola-rs/pyo3-polars"
description = "PyO3 bindings to polars"
description = "Expression plugins and PyO3 types for polars"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

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.19.0"
pyo3-polars-derive = { version = "*", path = "../pyo3-polars-derive", optional = true }
pyo3-polars-derive = { version = "0.1.0", path = "../pyo3-polars-derive", optional = true }
thiserror = "1"

[features]
Expand Down

0 comments on commit 141689e

Please sign in to comment.