From bc1af0c323c4f80712ad43b13b325cf540735659 Mon Sep 17 00:00:00 2001 From: Jean-Christophe Fillion-Robin Date: Fri, 6 Dec 2024 14:13:50 -0500 Subject: [PATCH 1/4] docs: Fix instructions to check if Development.SABIModule was requested This fixes instructions originally introduced in 48a879b ("docs: some updates (#334)", 2023-05-23) --- docs/cmakelists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmakelists.md b/docs/cmakelists.md index 521a0394..dd293036 100644 --- a/docs/cmakelists.md +++ b/docs/cmakelists.md @@ -36,7 +36,7 @@ related to making Python extension modules. If you are making a Limited API / Stable ABI package, you'll need the `Development.SABIModule` component instead (CMake 3.26+). You can use the -`SKBUILD_LIMITED_API` variable to check to see if it was requested. +`Python_Development.SABIModule_FOUND` variable to check to see if it was requested. :::{warning} From e0ec57b8494e446a078182d7590b4276ddb99ba0 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Fri, 6 Dec 2024 19:14:55 +0000 Subject: [PATCH 2/4] style: pre-commit fixes --- docs/cmakelists.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/cmakelists.md b/docs/cmakelists.md index dd293036..54120b3b 100644 --- a/docs/cmakelists.md +++ b/docs/cmakelists.md @@ -36,7 +36,8 @@ related to making Python extension modules. If you are making a Limited API / Stable ABI package, you'll need the `Development.SABIModule` component instead (CMake 3.26+). You can use the -`Python_Development.SABIModule_FOUND` variable to check to see if it was requested. +`Python_Development.SABIModule_FOUND` variable to check to see if it was +requested. :::{warning} From e284e5dd783e392930d824cf07b6927d6760802b Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Thu, 12 Dec 2024 14:53:26 -0500 Subject: [PATCH 3/4] Update docs/cmakelists.md Co-authored-by: Jean-Christophe Fillion-Robin --- docs/cmakelists.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/cmakelists.md b/docs/cmakelists.md index 54120b3b..38cce716 100644 --- a/docs/cmakelists.md +++ b/docs/cmakelists.md @@ -36,7 +36,7 @@ related to making Python extension modules. If you are making a Limited API / Stable ABI package, you'll need the `Development.SABIModule` component instead (CMake 3.26+). You can use the -`Python_Development.SABIModule_FOUND` variable to check to see if it was +`SKBUILD_SABI_COMPONENT` variable to check to see if it was requested. From 937878b753acbf8db29584db890b07652de42680 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Thu, 12 Dec 2024 19:53:52 +0000 Subject: [PATCH 4/4] style: pre-commit fixes --- docs/cmakelists.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/cmakelists.md b/docs/cmakelists.md index 38cce716..8f6580b6 100644 --- a/docs/cmakelists.md +++ b/docs/cmakelists.md @@ -36,8 +36,7 @@ related to making Python extension modules. If you are making a Limited API / Stable ABI package, you'll need the `Development.SABIModule` component instead (CMake 3.26+). You can use the -`SKBUILD_SABI_COMPONENT` variable to check to see if it was -requested. +`SKBUILD_SABI_COMPONENT` variable to check to see if it was requested. :::{warning}