Skip to content

Commit 74cd232

Browse files
authored
bump pyo3 to 0.25 (PyO3#46)
* bump pyo3 to 0.25 * bump pyo3 to 0.25 * bump pyo3 to 0.25 * bump pyo3 to 0.25
1 parent 47165ff commit 74cd232

File tree

3 files changed

+16
-16
lines changed

3 files changed

+16
-16
lines changed

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,11 +120,11 @@ futures = "0.3"
120120
inventory = { version = "0.3", optional = true }
121121
once_cell = "1.14"
122122
pin-project-lite = "0.2"
123-
pyo3 = "0.24"
124-
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.24.0", optional = true }
123+
pyo3 = "0.25"
124+
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.25.0", optional = true }
125125

126126
[dev-dependencies]
127-
pyo3 = { version = "0.24", features = ["macros"] }
127+
pyo3 = { version = "0.25", features = ["macros"] }
128128

129129
[dependencies.async-std]
130130
version = "1.12"

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ Here we initialize the runtime, import Python's `asyncio` library and run the gi
5050
```toml
5151
# Cargo.toml dependencies
5252
[dependencies]
53-
pyo3 = { version = "0.24" }
54-
pyo3-async-runtimes = { version = "0.24", features = ["attributes", "async-std-runtime"] }
53+
pyo3 = { version = "0.25" }
54+
pyo3-async-runtimes = { version = "0.25", features = ["attributes", "async-std-runtime"] }
5555
async-std = "1.13"
5656
```
5757

@@ -80,8 +80,8 @@ attribute.
8080
```toml
8181
# Cargo.toml dependencies
8282
[dependencies]
83-
pyo3 = { version = "0.24" }
84-
pyo3-async-runtimes = { version = "0.24", features = ["attributes", "tokio-runtime"] }
83+
pyo3 = { version = "0.25" }
84+
pyo3-async-runtimes = { version = "0.25", features = ["attributes", "tokio-runtime"] }
8585
tokio = "1.40"
8686
```
8787

@@ -126,17 +126,17 @@ For `async-std`:
126126

127127
```toml
128128
[dependencies]
129-
pyo3 = { version = "0.24", features = ["extension-module"] }
130-
pyo3-async-runtimes = { version = "0.24", features = ["async-std-runtime"] }
129+
pyo3 = { version = "0.25", features = ["extension-module"] }
130+
pyo3-async-runtimes = { version = "0.25", features = ["async-std-runtime"] }
131131
async-std = "1.13"
132132
```
133133

134134
For `tokio`:
135135

136136
```toml
137137
[dependencies]
138-
pyo3 = { version = "0.24", features = ["extension-module"] }
139-
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
138+
pyo3 = { version = "0.25", features = ["extension-module"] }
139+
pyo3-async-runtimes = { version = "0.25", features = ["tokio-runtime"] }
140140
tokio = "1.40"
141141
```
142142

@@ -430,8 +430,8 @@ name = "my_async_module"
430430
crate-type = ["cdylib"]
431431

432432
[dependencies]
433-
pyo3 = { version = "0.24", features = ["extension-module"] }
434-
pyo3-async-runtimes = { version = "0.24", features = ["tokio-runtime"] }
433+
pyo3 = { version = "0.25", features = ["extension-module"] }
434+
pyo3-async-runtimes = { version = "0.25", features = ["tokio-runtime"] }
435435
async-std = "1.13"
436436
tokio = "1.40"
437437
```
@@ -490,8 +490,8 @@ event loop before we can install the `uvloop` policy.
490490
```toml
491491
[dependencies]
492492
async-std = "1.13"
493-
pyo3 = "0.24"
494-
pyo3-async-runtimes = { version = "0.24", features = ["async-std-runtime"] }
493+
pyo3 = "0.25"
494+
pyo3-async-runtimes = { version = "0.25", features = ["async-std-runtime"] }
495495
```
496496

497497
```rust no_run

pyo3-async-runtimes-macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "pyo3-async-runtimes-macros"
33
description = "Proc Macro Attributes for `pyo3-async-runtimes`"
4-
version = "0.24.0"
4+
version = "0.25.0"
55
authors = [
66
"Andrew J Westlake <[email protected]>",
77
"David Hewitt <[email protected]>",

0 commit comments

Comments
 (0)