Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ futures = "0.3"
inventory = { version = "0.3", optional = true }
once_cell = "1.14"
pin-project-lite = "0.2"
pyo3 = "0.23"
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.23.0", optional = true }
pyo3 = "0.24.0"
pyo3-async-runtimes-macros = { path = "pyo3-async-runtimes-macros", version = "=0.24.0", optional = true }

[dev-dependencies]
pyo3 = { version = "0.23", features = ["macros"] }
pyo3 = { version = "0.24.0", features = ["macros"] }

[dependencies.async-std]
version = "1.12"
Expand Down
2 changes: 1 addition & 1 deletion pyo3-async-runtimes-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "pyo3-async-runtimes-macros"
description = "Proc Macro Attributes for `pyo3-async-runtimes`"
version = "0.23.0"
version = "0.24.0"
authors = [
"Andrew J Westlake <[email protected]>",
"David Hewitt <[email protected]>",
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ impl PyEnsureFuture {
fn call_soon_threadsafe<'py>(
event_loop: &Bound<'py, PyAny>,
context: &Bound<PyAny>,
args: impl IntoPyObject<'py, Target = PyTuple>,
args: impl IntoPyObject<'py, Target = PyTuple> + pyo3::call::PyCallArgs<'py>,
) -> PyResult<()> {
let py = event_loop.py();

Expand Down
Loading