summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--changelog.d/3822.misc.2.rst8
-rw-r--r--setuptools/command/dist_info.py2
-rw-r--r--setuptools/command/editable_wheel.py2
3 files changed, 6 insertions, 6 deletions
diff --git a/changelog.d/3822.misc.2.rst b/changelog.d/3822.misc.2.rst
index f29017f4..1df5bd4f 100644
--- a/changelog.d/3822.misc.2.rst
+++ b/changelog.d/3822.misc.2.rst
@@ -1,5 +1,5 @@
Added clarification about ``editable_wheel`` and ``dist_info`` CLI commands:
-they should not be called directly with ``python setup.py ...`` instead they
-are intended for internal use of ``setuptools`` (effectively as "private" commands).
-Users are recommended to user build backend APIs (:pep:`517` and :pep:`660`)
-in ``setuptools.build_meta``.
+they should not be called directly with ``python setup.py ...``.
+Instead they are reserved for internal use of ``setuptools`` (effectively as "private" commands).
+Users are recommended to rely on build backend APIs (:pep:`517` and :pep:`660`)
+exposed by ``setuptools.build_meta``.
diff --git a/setuptools/command/dist_info.py b/setuptools/command/dist_info.py
index 545e9995..40fdfd0a 100644
--- a/setuptools/command/dist_info.py
+++ b/setuptools/command/dist_info.py
@@ -19,7 +19,7 @@ from .._deprecation_warning import SetuptoolsDeprecationWarning
class dist_info(Command):
"""
This command is private and reserved for internal use of setuptools,
- clients should use the ``setuptools.build_meta`` APIs.
+ users should rely on ``setuptools.build_meta`` APIs.
"""
description = "DO NOT CALL DIRECTLY, INTERNAL ONLY: create .dist-info directory"
diff --git a/setuptools/command/editable_wheel.py b/setuptools/command/editable_wheel.py
index 5e532a7f..6fddf03d 100644
--- a/setuptools/command/editable_wheel.py
+++ b/setuptools/command/editable_wheel.py
@@ -111,7 +111,7 @@ Options like `package-data`, `include/exclude-package-data` or
class editable_wheel(Command):
"""Build 'editable' wheel for development.
This command is private and reserved for internal use of setuptools,
- clients should use the ``setuptools.build_meta`` APIs.
+ users should rely on ``setuptools.build_meta`` APIs.
"""
description = "DO NOT CALL DIRECTLY, INTERNAL ONLY: create PEP 660 editable wheel"