diff options
author | Anthon van der Neut <anthon@mnt.org> | 2021-03-09 09:02:50 +0100 |
---|---|---|
committer | Anthon van der Neut <anthon@mnt.org> | 2021-03-09 09:02:50 +0100 |
commit | e73562c6f14d1d71a9fea174d58465e1b13f68af (patch) | |
tree | 309851cca7d411b31c27753555871d493282c7f0 /_doc/conf.py | |
parent | 96839d9f64f4698bdc519cbfbd48d51178460714 (diff) | |
download | ruamel.yaml-e73562c6f14d1d71a9fea174d58465e1b13f68af.tar.gz |
remove python 2 specific code
add future deprecation warning to old style functions
Diffstat (limited to '_doc/conf.py')
-rw-r--r-- | _doc/conf.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/_doc/conf.py b/_doc/conf.py index 30a76f5..45869b1 100644 --- a/_doc/conf.py +++ b/_doc/conf.py @@ -45,11 +45,11 @@ source_suffix = ['.rst'] master_doc = 'index' # General information about the project. -project = u'yaml' -copyright = u'2017-2019, Anthon van der Neut, Ruamel bvba' -author = u'Anthon van der Neut' +project = 'yaml' +copyright = '2017-2021, Anthon van der Neut, Ruamel bvba' +author = 'Anthon van der Neut' -# The version info for the project you're documenting, acts as replacement for +# The version info for the project you are documenting, acts as replacement for # |version| and |release|, also used in various other places throughout the # built documents. # @@ -251,8 +251,8 @@ latex_documents = [ ( master_doc, 'yaml.tex', - u'Python YAML package documentation', - u'Anthon van der Neut', + 'Python YAML package documentation', + 'Anthon van der Neut', 'manual', ) ] @@ -282,7 +282,7 @@ latex_documents = [ # One entry per manual page. List of tuples # (source start file, name, description, authors, manual section). -man_pages = [(master_doc, 'yaml', u'yaml Documentation', [author], 1)] +man_pages = [(master_doc, 'yaml', 'yaml Documentation', [author], 1)] # If true, show URL addresses after external links. # man_show_urls = False @@ -297,7 +297,7 @@ texinfo_documents = [ ( master_doc, 'yaml', - u'yaml Documentation', + 'yaml Documentation', author, 'yaml', 'One line description of project.', |