mirror of
https://github.com/jazzband/django-analytical.git
synced 2026-03-16 22:20:25 +00:00
Address warnings in docs build process
Adjusts copyright following https://reuse.software/faq/#years-copyright
This commit is contained in:
parent
0d87a76da0
commit
a246d62ae0
1 changed files with 4 additions and 7 deletions
11
docs/conf.py
11
docs/conf.py
|
|
@ -13,7 +13,7 @@ import analytical # noqa
|
||||||
# -- General configuration --------------------------------------------------
|
# -- General configuration --------------------------------------------------
|
||||||
|
|
||||||
project = 'django-analytical'
|
project = 'django-analytical'
|
||||||
copyright = '2011-2020, Joost Cassee <joost@cassee.net>'
|
copyright = '2011, Joost Cassee <joost@cassee.net>'
|
||||||
|
|
||||||
release = analytical.__version__
|
release = analytical.__version__
|
||||||
# The short X.Y version.
|
# The short X.Y version.
|
||||||
|
|
@ -21,18 +21,15 @@ version = release.rsplit('.', 1)[0]
|
||||||
|
|
||||||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'local']
|
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'local']
|
||||||
templates_path = ['_templates']
|
templates_path = ['_templates']
|
||||||
source_suffix = '.rst'
|
source_suffix = {'.rst': 'restructuredtext'}
|
||||||
master_doc = 'index'
|
master_doc = 'index'
|
||||||
|
|
||||||
add_function_parentheses = True
|
add_function_parentheses = True
|
||||||
pygments_style = 'sphinx'
|
pygments_style = 'sphinx'
|
||||||
|
|
||||||
intersphinx_mapping = {
|
intersphinx_mapping = {
|
||||||
'python': ('http://docs.python.org/3.13', None),
|
'python': ('https://docs.python.org/3.13', None),
|
||||||
'django': (
|
'django': ('https://docs.djangoproject.com/en/stable', None),
|
||||||
'http://docs.djangoproject.com/en/stable',
|
|
||||||
'http://docs.djangoproject.com/en/stable/_objects/',
|
|
||||||
),
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue