diff options
author | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-02-13 20:46:39 +0000 |
---|---|---|
committer | Anderson Bravalheri <andersonbravalheri@gmail.com> | 2023-02-13 20:46:39 +0000 |
commit | 2bda269d0f2624dc77f6334976d16c07f967950e (patch) | |
tree | ee8f5f10e0b256c92e97fc3a0b454c6468eb4b56 /setuptools/command | |
parent | c9513a5007c317bbd4b195a90591e364ee44280a (diff) | |
download | python-setuptools-git-2bda269d0f2624dc77f6334976d16c07f967950e.tar.gz |
Small rewording for user-facing text/docs
Diffstat (limited to 'setuptools/command')
-rw-r--r-- | setuptools/command/dist_info.py | 2 | ||||
-rw-r--r-- | setuptools/command/editable_wheel.py | 2 |
2 files changed, 2 insertions, 2 deletions
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" |