2
0
Эх сурвалжийг харах

scripts: update docs about make.py

Thomas Waldmann 1 жил өмнө
parent
commit
4d424de69e

+ 4 - 4
docs/development.rst

@@ -360,8 +360,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
@@ -453,8 +453,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::
 

+ 2 - 2
scripts/make.py

@@ -535,8 +535,8 @@ def usage():
         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
     """
         )
     )