You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`Py_LIMITED_API` can be controlled with the `abi3` feature of the `pyo3` crate:
123
+
124
+
```
125
+
PYO3_PYTHON=/path/to/python cargo nextest run --package pyo3 --features abi3 ...
126
+
```
127
+
128
+
use the `PYO3_PRINT_CONFIG=1` to check the identified configuration.
113
129
114
130
#### Check all conditional compilation
115
131
`nox -s check-feature-powerset`
@@ -183,7 +199,11 @@ PyO3 supports all officially supported Python versions, as well as the latest Py
183
199
184
200
PyO3 aims to make use of up-to-date Rust language features to keep the implementation as efficient as possible.
185
201
186
-
The minimum Rust version supported will be decided when the release which bumps Python and Rust versions is made. At the time, the minimum Rust version will be set no higher than the lowest Rust version shipped in the current Debian, RHEL and Alpine Linux distributions.
202
+
The minimum Rust version supported will be decided when the release which bumps Python and Rust versions is made.
203
+
At the time, the minimum Rust version will be set no higher than the lowest Rust version shipped in the current
CI tests both the most recent stable Rust version and the minimum supported Rust version. Because of Rust's stability guarantees this is sufficient to confirm support for all Rust versions in between.
0 commit comments