-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* tokio_test: add panic message into exception string * test adding module to export panic type * get compiling * fix macros build * Fix some stuff * fix build for async_std and tokio * Bump PyO3 to 0.20 * Fixed compilation errors in panic message change * Bumped MSRV * Updated docs --------- Co-authored-by: Chris Gregory <[email protected]> Co-authored-by: Giovanni Barillari <[email protected]>
- Loading branch information
1 parent
0ce6d6d
commit 398ed30
Showing
9 changed files
with
123 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pyo3-asyncio" | ||
description = "PyO3 utilities for Python's Asyncio library" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Andrew J Westlake <[email protected]>"] | ||
readme = "README.md" | ||
keywords = ["pyo3", "python", "ffi", "async", "asyncio"] | ||
|
@@ -116,11 +116,11 @@ futures = "0.3" | |
inventory = { version = "0.3", optional = true } | ||
once_cell = "1.14" | ||
pin-project-lite = "0.2" | ||
pyo3 = "0.19" | ||
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.19.0", optional = true } | ||
pyo3 = "0.20" | ||
pyo3-asyncio-macros = { path = "pyo3-asyncio-macros", version = "=0.20.0", optional = true } | ||
|
||
[dev-dependencies] | ||
pyo3 = { version = "0.19", features = ["macros"] } | ||
pyo3 = { version = "0.20", features = ["macros"] } | ||
|
||
[dependencies.async-std] | ||
version = "1.12" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "pyo3-asyncio-macros" | ||
description = "Proc Macro Attributes for PyO3 Asyncio" | ||
version = "0.19.0" | ||
version = "0.20.0" | ||
authors = ["Andrew J Westlake <[email protected]>"] | ||
readme = "../README.md" | ||
keywords = ["pyo3", "python", "ffi", "async", "asyncio"] | ||
|
@@ -18,4 +18,4 @@ proc-macro = true | |
[dependencies] | ||
proc-macro2 = "1.0" | ||
quote = "1" | ||
syn = { version = "1", features = ["full"] } | ||
syn = { version = "1", features = ["full"] } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.