From 10138366c3fd7df70f8e82ba9689b104c368c544 Mon Sep 17 00:00:00 2001 From: Kattni Rembor Date: Thu, 9 Apr 2020 12:55:27 -0400 Subject: [PATCH 1/2] Black reformatting with Python 3 target. --- docs/conf.py | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2130937..b68f2dc 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,18 +46,18 @@ master_doc = "index" # General information about the project. -project = u"Adafruit_CircuitPython_MLX90393 Library" -copyright = u"2018 Kevin Townsend" -author = u"Kevin Townsend" +project = "Adafruit_CircuitPython_MLX90393 Library" +copyright = "2018 Kevin Townsend" +author = "Kevin Townsend" # 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"1.0" +version = "1.0" # The full version, including alpha/beta/rc tags. -release = u"1.0" +release = "1.0" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. @@ -148,7 +148,7 @@ ( master_doc, "Adafruit_CircuitPython_MLX90393Library.tex", - u"Adafruit_CircuitPython_MLX90393 Library Documentation", + "Adafruit_CircuitPython_MLX90393 Library Documentation", author, "manual", ), @@ -162,7 +162,7 @@ ( master_doc, "Adafruit_CircuitPython_MLX90393library", - u"Adafruit_CircuitPython_MLX90393 Library Documentation", + "Adafruit_CircuitPython_MLX90393 Library Documentation", [author], 1, ) @@ -177,7 +177,7 @@ ( master_doc, "Adafruit_CircuitPython_MLX90393Library", - u" Adafruit_CircuitPython_MLX90393 Library Documentation", + " Adafruit_CircuitPython_MLX90393 Library Documentation", author, "Adafruit_CircuitPython_MLX90393Library", "One line description of project.", From e2715f6094d26a3f58867bc22c5a0cf970fd8fe6 Mon Sep 17 00:00:00 2001 From: Dan Halbert Date: Thu, 9 Apr 2020 22:14:13 -0400 Subject: [PATCH 2/2] Canonicalize names in conf.py --- docs/conf.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index b68f2dc..c2e8fef 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -46,7 +46,7 @@ master_doc = "index" # General information about the project. -project = "Adafruit_CircuitPython_MLX90393 Library" +project = "Adafruit MLX90393 Library" copyright = "2018 Kevin Townsend" author = "Kevin Townsend" @@ -122,7 +122,7 @@ html_favicon = "_static/favicon.ico" # Output file base name for HTML help builder. -htmlhelp_basename = "Adafruit_circuitpython_mlx90393Librarydoc" +htmlhelp_basename = "AdafruitMLX90393Librarydoc" # -- Options for LaTeX output --------------------------------------------- @@ -147,8 +147,8 @@ latex_documents = [ ( master_doc, - "Adafruit_CircuitPython_MLX90393Library.tex", - "Adafruit_CircuitPython_MLX90393 Library Documentation", + "AdafruitMLX90393Library.tex", + "Adafruit MLX90393 Library Documentation", author, "manual", ), @@ -161,8 +161,8 @@ man_pages = [ ( master_doc, - "Adafruit_CircuitPython_MLX90393library", - "Adafruit_CircuitPython_MLX90393 Library Documentation", + "AdafruitMLX90393library", + "Adafruit MLX90393 Library Documentation", [author], 1, )