From 0031ce8c81a9e70444120fae0d1a4d86496facfb Mon Sep 17 00:00:00 2001 From: messense Date: Thu, 26 May 2022 12:40:55 +0800 Subject: [PATCH] Add Python 3.11 sysconfig for arm64 Windows --- Changelog.md | 1 + src/python_interpreter/sysconfig-windows.json | 11 +++++++++++ 2 files changed, 12 insertions(+) diff --git a/Changelog.md b/Changelog.md index 5f16b9c33..77736a21f 100644 --- a/Changelog.md +++ b/Changelog.md @@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 * Skip auditwheel for non-compliant linux environment automatically in [#931](https://github.com/PyO3/maturin/pull/931) * Fix abi3 wheel build issue when no Python interpreters found on host in [#933](https://github.com/PyO3/maturin/pull/933) * Add Python 3.11 sysconfigs for Linux, macOS and Windows in [#934](https://github.com/PyO3/maturin/pull/934) +* Add Python 3.11 sysconfig for arm64 Windows in [#936](https://github.com/PyO3/maturin/pull/936) ## [0.12.17] - 2022-05-18 diff --git a/src/python_interpreter/sysconfig-windows.json b/src/python_interpreter/sysconfig-windows.json index 4236e147a..67bfa38bf 100644 --- a/src/python_interpreter/sysconfig-windows.json +++ b/src/python_interpreter/sysconfig-windows.json @@ -92,5 +92,16 @@ "abi_tag": null, "pointer_width": 32 } + ], + "aarch64": [ + { + "major": 3, + "minor": 11, + "abiflags": "", + "interpreter": "cpython", + "ext_suffix": ".cp311-win_arm64.pyd", + "abi_tag": null, + "pointer_width": 64 + } ] } \ No newline at end of file