diff options
author | Mike Taves <mwtoews@gmail.com> | 2022-10-27 06:02:37 +1300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-26 10:02:37 -0700 |
commit | 13d55a3c2f016a58a6e9d6b8086f338e07c7478f (patch) | |
tree | a792928b2b4f959bdd685fba9dcf6ef7d049f145 /doc/neps/conf.py | |
parent | 12c2b7dd62fc0c14b81c8892ed5f4f59cc94d09c (diff) | |
download | numpy-13d55a3c2f016a58a6e9d6b8086f338e07c7478f.tar.gz |
MAINT: remove u-prefix for former Unicode strings (#22479)
Diffstat (limited to 'doc/neps/conf.py')
-rw-r--r-- | doc/neps/conf.py | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/doc/neps/conf.py b/doc/neps/conf.py index a0ab286bd..10644a190 100644 --- a/doc/neps/conf.py +++ b/doc/neps/conf.py @@ -47,18 +47,19 @@ source_suffix = '.rst' master_doc = 'content' # General information about the project. -project = u'NumPy Enhancement Proposals' -copyright = u'2017-2018, NumPy Developers' -author = u'NumPy Developers' +project = 'NumPy Enhancement Proposals' +copyright = '2017-2018, NumPy Developers' +author = 'NumPy Developers' +title = 'NumPy Enhancement Proposals Documentation' # The version info for the project you're documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # # The short X.Y version. -version = u'' +version = '' # The full version, including alpha/beta/rc tags. -release = u'' +release = '' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -147,8 +148,8 @@ latex_elements = { # (source start file, target name, title, # author, documentclass [howto, manual, or own class]). latex_documents = [ - (master_doc, 'NumPyEnhancementProposals.tex', u'NumPy Enhancement Proposals Documentation', - u'NumPy Developers', 'manual'), + (master_doc, 'NumPyEnhancementProposals.tex', title, + 'NumPy Developers', 'manual'), ] @@ -157,7 +158,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). man_pages = [ - (master_doc, 'numpyenhancementproposals', u'NumPy Enhancement Proposals Documentation', + (master_doc, 'numpyenhancementproposals', title, [author], 1) ] @@ -168,7 +169,7 @@ man_pages = [ # (source start file, target name, title, author, # dir menu entry, description, category) texinfo_documents = [ - (master_doc, 'NumPyEnhancementProposals', u'NumPy Enhancement Proposals Documentation', + (master_doc, 'NumPyEnhancementProposals', title, author, 'NumPyEnhancementProposals', 'One line description of project.', 'Miscellaneous'), ] |