Forgot to bump pyo3 version

Co-authored-by: David Hewitt <1939362+davidhewitt@users.noreply.github.com>
This commit is contained in:
Andrew J Westlake 2021-08-08 09:59:01 -05:00 committed by GitHub
parent 5c5a406ce4
commit dbb956fd4c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -97,7 +97,7 @@ Make your project depend on `pyo3` with the `extension-module` feature enabled a
For `async-std`:
```toml
[dependencies]
pyo3 = { version = "0.13", features = ["extension-module"] }
pyo3 = { version = "0.14", features = ["extension-module"] }
pyo3-asyncio = { version = "0.14", features = ["async-std-runtime"] }
async-std = "1.9"
```
@ -808,4 +808,4 @@ mod tests {
async fn main() -> pyo3::PyResult<()> {
pyo3_asyncio::testing::main().await
}
```
```