From 895cd13ebd2ffe6bb29b87063d107dfa667a73f7 Mon Sep 17 00:00:00 2001 From: Petr Viktorin Date: Tue, 30 May 2023 15:19:42 +0200 Subject: [PATCH] Update location of the stable_abi.py script --- developer-workflow/c-api.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/developer-workflow/c-api.rst b/developer-workflow/c-api.rst index daa694814..d9078d24f 100644 --- a/developer-workflow/c-api.rst +++ b/developer-workflow/c-api.rst @@ -375,14 +375,14 @@ Adding a new definition to the Limited API .. code-block:: shell - ./python ./Tools/scripts/stable_abi.py --generate-all ./Misc/stable_abi.toml + ./python ./Tools/build/stable_abi.py --generate-all ./Misc/stable_abi.toml - Build Python and check the using ``make check-limited-abi``. On platforms without ``make``, run this command directly: .. code-block:: shell - ./python ./Tools/scripts/stable_abi.py --all ./Misc/stable_abi.toml + ./python ./Tools/build/stable_abi.py --all ./Misc/stable_abi.toml - Add tests -- see below.