We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
pyo3-build-config
1 parent 48739ac commit 7a7b77bCopy full SHA for 7a7b77b
pyo3-build-config/src/lib.rs
@@ -221,8 +221,7 @@ pub fn print_expected_cfgs() {
221
222
// allow `Py_3_*` cfgs from the minimum supported version up to the
223
// maximum minor version (+1 for development for the next)
224
- // FIXME: support cfg(Py_3_14) as well due to PyGILState_Ensure
225
- for i in impl_::MINIMUM_SUPPORTED_VERSION.minor..=std::cmp::max(14, impl_::ABI3_MAX_MINOR + 1) {
+ for i in impl_::MINIMUM_SUPPORTED_VERSION.minor..=impl_::ABI3_MAX_MINOR + 1 {
226
println!("cargo:rustc-check-cfg=cfg(Py_3_{i})");
227
}
228
0 commit comments