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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ numpy = "0.28"
object_store = "0.13"
parquet = "58"
pyo3 = { version = "0.28", features = ["macros", "indexmap"] }
pyo3-arrow = { path = "pyo3-arrow" }
# pyo3-arrow = { path = "pyo3-arrow" }
pyo3-arrow = { git = "https://github.com/kylebarron/arro3", rev = "1c60c59124f2b033b1de69aebfa19d768825d4a3" }
pyo3-async-runtimes = { version = "0.28", features = ["tokio-runtime"] }
pyo3-file = { git = "https://github.com/kylebarron/pyo3-file", rev = "f724ceaa7e06e7d227bf40b1d60adbb842963a44" }
pyo3-object_store = "0.9"
Expand Down
4 changes: 4 additions & 0 deletions pyo3-arrow/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## [0.18.0] - 2026-06-09

Release with pyo3 0.28 and arrow 59.

## [0.17.0] - 2026-02-25

Release with pyo3 0.28 and arrow 58.
Expand Down
36 changes: 18 additions & 18 deletions pyo3-arrow/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions pyo3-arrow/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pyo3-arrow"
version = "0.17.0"
version = "0.18.0"
authors = ["Kyle Barron <kylebarron2@gmail.com>"]
edition = "2021"
description = "Arrow integration for pyo3."
Expand All @@ -19,12 +19,12 @@ default = ["buffer_protocol"]
buffer_protocol = []

[dependencies]
arrow-array = { version = "58", features = ["chrono-tz", "ffi"] }
arrow-buffer = "58"
arrow-cast = { version = "58", features = ["prettyprint"] }
arrow-data = "58"
arrow-schema = "58"
arrow-select = "58"
arrow-array = { version = "59", features = ["chrono-tz", "ffi"] }
arrow-buffer = "59"
arrow-cast = { version = "59", features = ["prettyprint"] }
arrow-data = "59"
arrow-schema = "59"
arrow-select = "59"
chrono = "0.4"
chrono-tz = "0.10"
pyo3 = { version = "0.28", features = ["chrono", "chrono-tz", "indexmap"] }
Expand Down
1 change: 1 addition & 0 deletions pyo3-arrow/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -199,6 +199,7 @@ In this case, you must depend on `nanoarrow` and you can use the `to_nanoarrow`
| 0.15.x | 0.27 | 57 |
| 0.16.x | 0.28 | 57 |
| 0.17.x | 0.28 | 58 |
| 0.18.x | 0.28 | 59 |

## Buffer Protocol

Expand Down
Loading