diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-19 11:10:17 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-02-19 11:10:17 -0500 |
commit | be18a01654d05ebfba04e713c20c1fbd4d170dc3 (patch) | |
tree | 3ad53bec632beca22a40bd2cb5c0702eb7cdd927 /docs/conf.py | |
parent | bfd610e2b7f1ad369b75f777b3fa7472347b49c8 (diff) | |
download | external_python_setuptools-be18a01654d05ebfba04e713c20c1fbd4d170dc3.tar.gz external_python_setuptools-be18a01654d05ebfba04e713c20c1fbd4d170dc3.tar.bz2 external_python_setuptools-be18a01654d05ebfba04e713c20c1fbd4d170dc3.zip |
Add hyperlinks to PEPs in changelog.
Diffstat (limited to 'docs/conf.py')
-rw-r--r-- | docs/conf.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docs/conf.py b/docs/conf.py index c2a63873..155f83f3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -250,6 +250,10 @@ link_files = { pattern=r"[Pp]ackaging (?P<packaging_ver>\d+(\.\d+)+)", url='{GH}/pypa/packaging/blob/{packaging_ver}/CHANGELOG.rst', ), + dict( + pattern=r"PEP[- ](?P<pep_number>\d+)", + url='https://www.python.org/dev/peps/pep-{pep_number:0>4}/', + ), ], ), } |