- Added compatibility for pyo3 [function signatures](https://pyo3.rs/v0.18.3/function/signature) (thanks Walnut356)
- Updated default pyo3 version to 0.18.3
---
**PyO3 compatibility note**: Templating-dependent extensions experiencing problems with the new pyo3 version need to either [migrate their code](https://pyo3.rs/v0.18.3/migration.html) or fix their dependency using a manifest-comment like this in their rust source file:
diff
// rustimport: pyo3
+ //: [dependencies]
+ //: pyo3 = { version = "0.16.2", features = ["extension-module"] }