Merge pull request #2681 from PyO3/unpin-itertools

Unpin itertools after it was published without a spurious resolver specification.
This commit is contained in:
David Hewitt 2022-10-13 07:49:51 +01:00 committed by GitHub
commit 43261c7b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 4 deletions

View File

@ -191,7 +191,6 @@ jobs:
cargo update -p plotters-svg --precise 0.3.1
cargo update -p plotters-backend --precise 0.3.2
cargo update -p bumpalo --precise 3.10.0
cargo update -p itertools --precise 0.10.3
cargo update -p once_cell --precise 1.14.0
- name: Build docs

View File

@ -25,7 +25,7 @@
//! Note that you must use compatible versions of chrono and PyO3.
//! The required chrono version may vary based on the version of PyO3.
//!
//! # Example: Convert a PyDateTime to chrono's DateTime<Utc>
//! # Example: Convert a `PyDateTime` to chrono's `DateTime<Utc>`
//!
//! ```rust
//! use chrono::{Utc, DateTime};

View File

@ -955,9 +955,9 @@ where
}
}
/// Py<T> can be used as an error when T is an Error.
/// `Py<T>` can be used as an error when T is an Error.
///
/// However for GIL lifetime reasons, cause() cannot be implemented for Py<T>.
/// However for GIL lifetime reasons, cause() cannot be implemented for `Py<T>`.
/// Use .as_ref() to get the GIL-scoped error if you need to inspect the cause.
impl<T> std::error::Error for Py<T>
where