diff options
author | Jürgen Gmach <juergen.gmach@googlemail.com> | 2019-12-23 14:53:18 (GMT) |
---|---|---|
committer | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2019-12-23 14:53:18 (GMT) |
commit | 9f9dac0a4e58d5c72aa3b644701cb155c009cb2c (patch) | |
tree | fe5cc25f65d9f9cc27a59566ae27e03823dba07f /Doc/distutils | |
parent | e7b406f4e20e248d24079f97d7c8b93e5a45249e (diff) | |
download | cpython-9f9dac0a4e58d5c72aa3b644701cb155c009cb2c.zip cpython-9f9dac0a4e58d5c72aa3b644701cb155c009cb2c.tar.gz cpython-9f9dac0a4e58d5c72aa3b644701cb155c009cb2c.tar.bz2 |
bpo-38914 Do not require email field in setup.py. (GH-17388)
When checking `setup.py` and when the `author` field was provided, but
the `author_email` field was missing, erroneously a warning message was
displayed that the `author_email` field is required.
The specs do not require the `author_email`field:
https://packaging.python.org/specifications/core-metadata/#author
The same is valid for `maintainer` and `maintainer_email`.
The warning message has been adjusted.
modified: Doc/distutils/examples.rst
modified: Lib/distutils/command/check.py
https://bugs.python.org/issue38914
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/examples.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/distutils/examples.rst b/Doc/distutils/examples.rst index 44f7083..e492b7f 100644 --- a/Doc/distutils/examples.rst +++ b/Doc/distutils/examples.rst @@ -255,7 +255,7 @@ Running the ``check`` command will display some warnings: running check warning: check: missing required meta-data: version, url warning: check: missing meta-data: either (author and author_email) or - (maintainer and maintainer_email) must be supplied + (maintainer and maintainer_email) should be supplied If you use the reStructuredText syntax in the ``long_description`` field and |