Merge pull request #2681 from PyO3/unpin-itertools
Unpin itertools after it was published without a spurious resolver specification.
This commit is contained in:
commit
43261c7b8c
|
@ -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
|
||||
|
|
|
@ -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};
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue