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 --------------------------------------------------
|
||||
|
||||
project = 'django-analytical'
|
||||
copyright = '2011-2020, Joost Cassee <joost@cassee.net>'
|
||||
copyright = '2011, Joost Cassee <joost@cassee.net>'
|
||||
|
||||
release = analytical.__version__
|
||||
# The short X.Y version.
|
||||
|
|
@ -21,18 +21,15 @@ version = release.rsplit('.', 1)[0]
|
|||
|
||||
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx', 'local']
|
||||
templates_path = ['_templates']
|
||||
source_suffix = '.rst'
|
||||
source_suffix = {'.rst': 'restructuredtext'}
|
||||
master_doc = 'index'
|
||||
|
||||
add_function_parentheses = True
|
||||
pygments_style = 'sphinx'
|
||||
|
||||
intersphinx_mapping = {
|
||||
'python': ('http://docs.python.org/3.13', None),
|
||||
'django': (
|
||||
'http://docs.djangoproject.com/en/stable',
|
||||
'http://docs.djangoproject.com/en/stable/_objects/',
|
||||
),
|
||||
'python': ('https://docs.python.org/3.13', None),
|
||||
'django': ('https://docs.djangoproject.com/en/stable', None),
|
||||
}
|
||||
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue