Skip to content

Commit d2aead6

Browse files
authored
Bump to pyo3 0.24 (#366)
1 parent d38dc27 commit d2aead6

File tree

7 files changed

+40
-31
lines changed

7 files changed

+40
-31
lines changed

Cargo.lock

Lines changed: 23 additions & 22 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ futures = "0.3.31"
2727
http = "1.2"
2828
indexmap = "2"
2929
object_store = "0.12"
30-
pyo3 = { version = "0.23.4", features = ["macros", "indexmap"] }
31-
pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"] }
32-
pyo3-file = "0.10"
30+
pyo3 = { version = "0.24", features = ["macros", "indexmap"] }
31+
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
32+
pyo3-file = "0.11"
3333
thiserror = "1"
3434
tokio = "1.40"
3535
url = "2"

obstore/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ http = { workspace = true }
2626
indexmap = { workspace = true }
2727
object_store = { workspace = true }
2828
pyo3 = { workspace = true, features = ["chrono"] }
29-
pyo3-arrow = "0.7.2"
29+
pyo3-arrow = "0.8"
3030
pyo3-async-runtimes = { workspace = true, features = ["tokio-runtime"] }
3131
pyo3-bytes = { path = "../pyo3-bytes" }
3232
pyo3-file = { workspace = true }

pyo3-bytes/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-bytes"
3-
version = "0.1.3"
3+
version = "0.2.0"
44
authors = [
55
"Kyle Barron <kyle@developmentseed.org>",
66
"jesse rubin <jesse@dgi.com>",
@@ -17,7 +17,7 @@ rust-version = "1.75"
1717
[dependencies]
1818
# https://github.com/tokio-rs/bytes/releases/tag/v1.10.1
1919
bytes = "1.10.1"
20-
pyo3 = "0.23.4"
20+
pyo3 = "0.24"
2121

2222
[lib]
2323
crate-type = ["rlib"]

pyo3-bytes/README.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,10 @@ methods (with the same signature) as the Python `bytes` object.
5858
The Python type hints are available in the Github repo in the file `bytes.pyi`.
5959
I don't know the best way to distribute this to downstream projects. If you have
6060
an idea, create an issue to discuss.
61+
62+
## Version compatibility
63+
64+
| pyo3-bytes | pyo3 |
65+
| ---------- | ---- |
66+
| 0.1.x | 0.23 |
67+
| 0.2.x | 0.24 |

pyo3-object_store/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "pyo3-object_store"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors = ["Kyle Barron <kyle@developmentseed.org>"]
55
edition = "2021"
66
description = "object_store integration for pyo3."
@@ -25,8 +25,8 @@ itertools = "0.14.0"
2525
object_store = { version = "0.12", features = ["aws", "azure", "gcp", "http"] }
2626
# This is already an object_store dependency
2727
percent-encoding = "2.1"
28-
pyo3 = { version = "0.23.4", features = ["chrono", "indexmap"] }
29-
pyo3-async-runtimes = { version = "0.23", features = ["tokio-runtime"] }
28+
pyo3 = { version = "0.24", features = ["chrono", "indexmap"] }
29+
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
3030
serde = "1"
3131
thiserror = "1"
3232
tokio = { version = "1.40", features = ["rt-multi-thread"] }

pyo3-object_store/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,3 +61,4 @@ We don't yet have a _great_ solution here for reusing the store builder type hin
6161
| pyo3-object_store | pyo3 | object_store |
6262
| ----------------- | ---- | ------------ |
6363
| 0.1.x | 0.23 | 0.12 |
64+
| 0.2.x | 0.24 | 0.12 |

0 commit comments

Comments
 (0)