diff --git a/Changelog.md b/Changelog.md index 50594a912..83eb97e61 100644 --- a/Changelog.md +++ b/Changelog.md @@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Autodetect PyPy executables in [#617](https://github.com/PyO3/maturin/pull/617) * auditwheel: add `libz.so.1` to whitelisted libraries in [#625](https://github.com/PyO3/maturin/pull/625) * auditwheel: detect musl libc in [#629](https://github.com/PyO3/maturin/pull/629) +* Fixed Python 3.10 and later versions detection on Windows in [#630](https://github.com/PyO3/maturin/pull/630) ## [0.11.3] - 2021-08-25 diff --git a/src/python_interpreter.rs b/src/python_interpreter.rs index d9c49bfaf..c9212d639 100644 --- a/src/python_interpreter.rs +++ b/src/python_interpreter.rs @@ -94,7 +94,7 @@ fn find_all_windows(target: &Target, min_python_minor: usize) -> Result