From 8bf7ad575ab28103c74ffcf0027b601db3f6fbab Mon Sep 17 00:00:00 2001 From: Thomas Waldmann Date: Tue, 30 Jan 2024 23:21:04 +0100 Subject: [PATCH] scripts: update docs about make.py --- docs/development.rst | 8 ++++---- scripts/make.py | 4 ++-- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/development.rst b/docs/development.rst index 50a1656a5..f328eef14 100644 --- a/docs/development.rst +++ b/docs/development.rst @@ -220,8 +220,8 @@ for easier use by packagers downstream. When a command is added, a command line flag changed, added or removed, the usage docs need to be rebuilt as well:: - python scripts/gendocs.py build_usage - python scripts/gendocs.py build_man + python scripts/make.py build_usage + python scripts/make.py build_man However, we prefer to do this as part of our :ref:`releasing` preparations, so it is generally not necessary to update these when @@ -313,8 +313,8 @@ Checklist: - Verify that ``MANIFEST.in``, ``pyproject.toml`` and ``setup.py`` are complete. - Run these commands and commit:: - python scripts/gendocs.py build_usage - python scripts/gendocs.py build_man + python scripts/make.py build_usage + python scripts/make.py build_man - Tag the release:: diff --git a/scripts/make.py b/scripts/make.py index d8ee3b4b7..57bfe640d 100644 --- a/scripts/make.py +++ b/scripts/make.py @@ -521,8 +521,8 @@ class BuildMan: def usage(): print(textwrap.dedent(""" Usage: - python scripts/gendocs.py build_usage # build usage documentation - python scripts/gendocs.py build_man # build man pages + python scripts/make.py build_usage # build usage documentation + python scripts/make.py build_man # build man pages """))