summaryrefslogtreecommitdiff
path: root/doc/conf.py
diff options
context:
space:
mode:
Diffstat (limited to 'doc/conf.py')
-rw-r--r--doc/conf.py7
1 files changed, 3 insertions, 4 deletions
diff --git a/doc/conf.py b/doc/conf.py
index 9d382c3d..3ebb02c6 100644
--- a/doc/conf.py
+++ b/doc/conf.py
@@ -1,4 +1,3 @@
-# -*- coding: utf-8 -*-
# Licensed under the Apache License: http://www.apache.org/licenses/LICENSE-2.0
# For details: https://github.com/nedbat/coveragepy/blob/master/NOTICE.txt
@@ -58,8 +57,8 @@ source_suffix = '.rst'
master_doc = 'index'
# General information about the project.
-project = u'Coverage.py'
-copyright = u'2009\N{EN DASH}2021, Ned Batchelder.' # CHANGEME # pylint: disable=redefined-builtin
+project = 'Coverage.py'
+copyright = '2009\N{EN DASH}2021, Ned Batchelder.' # CHANGEME # pylint: disable=redefined-builtin
# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
@@ -229,7 +228,7 @@ linkcheck_ignore = [
r"https://github.com/nedbat/coveragepy/(issues|pull)/\d+",
# When publishing a new version, the docs will refer to the version before
# the docs have been published. So don't check those links.
- r"https://coverage.readthedocs.io/en/{}$".format(release),
+ fr"https://coverage.readthedocs.io/en/{release}$",
]
# https://github.com/executablebooks/sphinx-tabs/pull/54