summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorSebastian Kriems <skriems@users.noreply.github.com>2018-12-14 16:19:36 +0100
committerJason R. Coombs <jaraco@jaraco.com>2018-12-14 10:19:36 -0500
commitbc8a6cdf948376e1c846a121a4e8e4a699c66909 (patch)
treeb31f52503b91ab96fa9a64be8a79108a02a519cf /docs
parenta8bca166266fa2eeab931f6f20eef8e50048dddf (diff)
downloadpytest-runner-bc8a6cdf948376e1c846a121a4e8e4a699c66909.tar.gz
spaces, style and formatters (#4)
use spaces, fixed indentation, format using autopep8
Diffstat (limited to 'docs')
-rw-r--r--docs/conf.py44
1 files changed, 19 insertions, 25 deletions
diff --git a/docs/conf.py b/docs/conf.py
index aeda56c..49a855f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -1,32 +1,26 @@
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
-extensions = [
- 'sphinx.ext.autodoc',
- 'jaraco.packaging.sphinx',
- 'rst.linker',
-]
+extensions = ["sphinx.ext.autodoc", "jaraco.packaging.sphinx", "rst.linker"]
-master_doc = 'index'
+master_doc = "index"
link_files = {
- '../CHANGES.rst': dict(
- using=dict(
- GH='https://github.com',
- ),
- replace=[
- dict(
- pattern=r'(Issue #|\B#)(?P<issue>\d+)',
- url='{package_url}/issues/{issue}',
- ),
- dict(
- pattern=r'^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n',
- with_scm='{text}\n{rev[timestamp]:%d %b %Y}\n',
- ),
- dict(
- pattern=r'PEP[- ](?P<pep_number>\d+)',
- url='https://www.python.org/dev/peps/pep-{pep_number:0>4}/',
- ),
- ],
- ),
+ "../CHANGES.rst": dict(
+ using=dict(GH="https://github.com"),
+ replace=[
+ dict(
+ pattern=r"(Issue #|\B#)(?P<issue>\d+)",
+ url="{package_url}/issues/{issue}",
+ ),
+ dict(
+ pattern=r"^(?m)((?P<scm_version>v?\d+(\.\d+){1,2}))\n[-=]+\n",
+ with_scm="{text}\n{rev[timestamp]:%d %b %Y}\n",
+ ),
+ dict(
+ pattern=r"PEP[- ](?P<pep_number>\d+)",
+ url="https://www.python.org/dev/peps/pep-{pep_number:0>4}/",
+ ),
+ ],
+ )
}