Skip to content

Commit

Permalink
Update for Python 3
Browse files Browse the repository at this point in the history
  • Loading branch information
benmwebb committed Aug 15, 2020
1 parent 9cb3e02 commit d557007
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
extensions = ['sphinx.ext.autodoc', 'sphinx.ext.intersphinx']

# Link to standard Python documentation
intersphinx_mapping = {'python': ('https://docs.python.org/2.7', None)}
intersphinx_mapping = {'python': ('https://docs.python.org/3', None)}

# Add any paths that contain templates here, relative to this directory.
templates_path = ['.templates']
Expand All @@ -41,8 +41,8 @@
master_doc = 'index'

# General information about the project.
project = u'Sali lab web framework'
copyright = u'2009-2019, Sali Lab'
project = 'Sali lab web framework'
copyright = '2009-2020, Sali Lab'

# The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the
Expand Down Expand Up @@ -168,8 +168,8 @@
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, document class [howto/manual]).
latex_documents = [
('index', 'Saliweb.tex', ur'Web service Documentation',
ur'Sali Lab', 'manual'),
('index', 'Saliweb.tex', 'Web service Documentation',
'Sali Lab', 'manual'),
]

# The name of an image file (relative to this directory) to place at the top of
Expand Down

0 comments on commit d557007

Please sign in to comment.