This release contains many improvements across PyO3's feature set:
- Proper support for
__init__methods for#[pyclass]types - Support for
#[deleter]s to complement the existing#[getter]and#[setter]attributes when implementing class "properties". - Support for subclassing many Python types with the
abi3feature (requires Python 3.12+). - A new
#[pyclass(new = "from_fields")]...