##// END OF EJS Templates
Backport PR #10993: fix execution count when custom exception is caught during compile
Backport PR #10993: fix execution count when custom exception is caught during compile

File last commit:

r23871:c7e33439
r24141:0b16b1c7
Show More
conf.py
269 lines | 8.5 KiB | text/x-python | PythonLexer
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # -*- coding: utf-8 -*-
#
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695 # IPython documentation build configuration file.
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
# NOTE: This file has been edited manually from the auto-generated one from
# sphinx. Do NOT delete and re-generate. If any changes from sphinx are
# needed, generate a scratch one and merge by hand any new fields needed.
Ville M. Vainio
add ipython.rst to sphinx source
r1116 #
# This file is execfile()d with the current directory set to its containing dir.
#
# The contents of this file are pickled, so don't put values in the namespace
# that aren't pickleable (module imports are okay, they're removed automatically).
#
# All configuration values have a default value; values that are commented out
# serve to show the default value.
Brian E Granger
Beginning to organize the rst documentation.
r1256 import sys, os
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Matthias Bussonnier
Backport PR #10022: Remove matplotlib requirement for building docs...
r23145 # http://read-the-docs.readthedocs.io/en/latest/faq.html
Bussonnier Matthias
allow docs to build on http://readthedocs.org/
r8151 ON_RTD = os.environ.get('READTHEDOCS', None) == 'True'
if ON_RTD:
Bussonnier Matthias
link official doc from rtfdwq
r8153 tags.add('rtd')
Min RK
run autogen_config,api,magics on RTD
r21589
# RTD doesn't use the Makefile, so re-run autogen_{things}.py here.
Matthias Bussonnier
Generate shortcuts on RTD...
r22660 for name in ('config', 'api', 'magics', 'shortcuts'):
Min RK
run autogen_config,api,magics on RTD
r21589 fname = 'autogen_{}.py'.format(name)
fpath = os.path.abspath(os.path.join('..', fname))
with open(fpath) as f:
Min RK
ensure `__name__ == __main__`...
r21592 exec(compile(f.read(), fname, 'exec'), {
'__file__': fpath,
'__name__': '__main__',
})
Matthias Bussonnier
Documentation overhaul....
r22588 else:
import sphinx_rtd_theme
html_theme = "sphinx_rtd_theme"
html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
Min RK
run autogen_config,api,magics on RTD
r21589
Brian E Granger
Beginning to organize the rst documentation.
r1256 # If your extensions are in another directory, add it here. If the directory
# is relative to the documentation root, use os.path.abspath to make it
# absolute, like shown here.
MinRK
added gh-pages command for GitHub hosted sphinx docs
r3255 sys.path.insert(0, os.path.abspath('../sphinxext'))
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539 # We load the ipython release info into a dict by explicit execution
iprelease = {}
Min RK
py3compat: execfile in sphinx conf.py
r20284 exec(compile(open('../../IPython/core/release.py').read(), '../../IPython/core/release.py', 'exec'),iprelease)
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # General configuration
# ---------------------
# Add any Sphinx extension module names here, as strings. They can be extensions
Brian E Granger
Beginning to organize the rst documentation.
r1256 # coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
Brian Granger
Cleanup of docs....
r2275 extensions = [
'sphinx.ext.autodoc',
Thomas Kluyver
Use Sphinx autosummary extension for API docs index
r13605 'sphinx.ext.autosummary',
Brian Granger
Cleanup of docs....
r2275 'sphinx.ext.doctest',
Julian Taylor
remove copy of sphinx inheritance_diagram.py...
r10489 'sphinx.ext.inheritance_diagram',
Thomas Kluyver
Document single codebase Python 3 compatibility
r13388 'sphinx.ext.intersphinx',
MinRK
move ipython sphinx extensions into IPython.sphinxext
r11212 'IPython.sphinxext.ipython_console_highlighting',
'IPython.sphinxext.ipython_directive',
Min RK
use napoleon instead of numpydoc
r21711 'sphinx.ext.napoleon', # to preprocess docstrings
MinRK
add github extension for easy links to issues/pulls....
r5280 'github', # for easy GitHub links
Thomas Kluyver
Add Sphinx extension to document line & cell magics
r18184 'magics',
Brian Granger
Cleanup of docs....
r2275 ]
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Bussonnier Matthias
allow docs to build on http://readthedocs.org/
r8151 if ON_RTD:
# Remove extensions not currently supported on RTD
MinRK
move ipython sphinx extensions into IPython.sphinxext
r11212 extensions.remove('IPython.sphinxext.ipython_directive')
Matthias BUSSONNIER
fix rtfd by removing sphinxext import
r11811 extensions.remove('IPython.sphinxext.ipython_console_highlighting')
Bussonnier Matthias
allow docs to build on http://readthedocs.org/
r8151
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # Add any paths that contain templates here, relative to this directory.
templates_path = ['_templates']
# The suffix of source filenames.
Paul Ivanov
update indexes to use .rst, remove .txt refs
r11730 source_suffix = '.rst'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Matthias Bussonnier
Some rst and configuration fixes.
r22589 def is_stable(extra):
for ext in {'dev', 'b', 'rc'}:
if ext in extra:
return False
return True
if is_stable(iprelease['_version_extra']):
tags.add('ipystable')
else:
tags.add('ipydev')
Matthias BUSSONNIER
add sphinx prolog
r11812
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # The master toctree document.
Brian E Granger
Beginning to organize the rst documentation.
r1256 master_doc = 'index'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# General substitutions.
project = 'IPython'
MinRK
check explicitly for 'dev' before adding the note to docs...
r16176 copyright = 'The IPython Development Team'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
MinRK
add github extension for easy links to issues/pulls....
r5280 # ghissue config
github_project_url = "https://github.com/ipython/ipython"
Thomas Kluyver
Set numpydoc options to produce fewer Sphinx warnings....
r14000 # numpydoc config
numpydoc_show_class_members = False # Otherwise Sphinx emits thousands of warnings
numpydoc_class_members_toctree = False
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # The default replacements for |version| and |release|, also used in various
# other places throughout the built documents.
#
# The full version, including alpha/beta/rc tags.
MinRK
remove codename
r16025 release = "%s" % iprelease['version']
MinRK
add codename to sphinx index and what's new
r11888 # Just the X.Y.Z part, no '-dev'
version = iprelease['version'].split('-', 1)[0]
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# There are two options for replacing |today|: either, you set today to some
# non-false value, then it is used:
#today = ''
# Else, today_fmt is used as the format for a strftime call.
today_fmt = '%B %d, %Y'
# List of documents that shouldn't be included in the build.
#unused_docs = []
Thomas Kluyver
Exclude whatsnew/pr directory from docs builds...
r16161 # Exclude these glob-style patterns when looking for source files. They are
# relative to the source/ directory.
exclude_patterns = ['whatsnew/pr']
Brian E Granger
Beginning to organize the rst documentation.
r1256
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # If true, '()' will be appended to :func: etc. cross-reference text.
#add_function_parentheses = True
# If true, the current module name will be prepended to all description
# unit titles (such as .. function::).
#add_module_names = True
# If true, sectionauthor and moduleauthor directives will be shown in the
# output. They are ignored by default.
#show_authors = False
# The name of the Pygments (syntax highlighting) style to use.
pygments_style = 'sphinx'
Thomas Kluyver
Set default rst role to literal
r17298 # Set the default role so we can use `foo` instead of ``foo``
default_role = 'literal'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Options for HTML output
# -----------------------
# The style sheet to use for HTML and HTML Help pages. A file of that name
# must exist either in Sphinx' static/ path, or in one of the custom paths
# given in html_static_path.
Matthias Bussonnier
Documentation overhaul....
r22588 # html_style = 'default.css'
Carol Willing
First pass at editing pr
r22594
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Brian E Granger
Beginning to organize the rst documentation.
r1256 # The name for this set of Sphinx documents. If None, it defaults to
# "<project> v<release> documentation".
#html_title = None
# The name of an image file (within the static path) to place at the top of
# the sidebar.
#html_logo = None
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # Add any paths that contain custom static files (such as style sheets) here,
# relative to this directory. They are copied after the builtin static files,
# so a file named "default.css" will overwrite the builtin "default.css".
html_static_path = ['_static']
Carol Willing
First pass at editing pr
r22594
# Favicon needs the directory name
Carol Willing
Add updates to conf.py
r22593 html_favicon = '_static/favicon.ico'
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
# using the given strftime format.
html_last_updated_fmt = '%b %d, %Y'
# If true, SmartyPants will be used to convert quotes and dashes to
# typographically correct entities.
#html_use_smartypants = True
# Custom sidebar templates, maps document names to template names.
#html_sidebars = {}
# Additional templates that should be rendered to pages, maps page names to
# template names.
Paul Ivanov
major doc update for 1.0 release...
r12098 html_additional_pages = {
MinRK
add redirects for notebook docs moved out of interactive
r15985 'interactive/htmlnotebook': 'notebook_redirect.html',
'interactive/notebook': 'notebook_redirect.html',
'interactive/nbconvert': 'notebook_redirect.html',
'interactive/public_server': 'notebook_redirect.html',
Paul Ivanov
major doc update for 1.0 release...
r12098 }
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# If false, no module index is generated.
#html_use_modindex = True
# If true, the reST sources are included in the HTML build as _sources/<name>.
#html_copy_source = True
Brian E Granger
Beginning to organize the rst documentation.
r1256 # If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
# base URL from which the finished HTML is served.
#html_use_opensearch = ''
# If nonempty, this is the file name suffix for HTML files (e.g. ".xhtml").
#html_file_suffix = ''
Ville M. Vainio
add ipython.rst to sphinx source
r1116 # Output file base name for HTML help builder.
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695 htmlhelp_basename = 'ipythondoc'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
Matthias Bussonnier
'update intersphinx'
r22599 intersphinx_mapping = {'python': ('https://docs.python.org/3/', None),
'rpy2': ('https://rpy2.readthedocs.io/en/version_2.8.x/', None),
'traitlets': ('https://traitlets.readthedocs.io/en/latest/', None),
'jupyterclient': ('https://jupyter-client.readthedocs.io/en/latest/', None),
'ipyparallel': ('https://ipyparallel.readthedocs.io/en/latest/', None),
'jupyter': ('https://jupyter.readthedocs.io/en/latest/', None),
Thomas Kluyver
Remove documentation of machinery that is now in traitlets...
r21385 }
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Options for LaTeX output
# ------------------------
# The paper size ('letter' or 'a4').
Brian E Granger
Beginning to organize the rst documentation.
r1256 latex_paper_size = 'letter'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# The font size ('10pt', '11pt' or '12pt').
Fernando Perez
Fixes to build/setup machinery....
r1525 latex_font_size = '11pt'
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Grouping the document tree into LaTeX files. List of tuples
# (source start file, target name, title, author, document class [howto/manual]).
Fernando Perez
Fixes to build/setup machinery....
r1525
Brian Granger
Initial draft of Windows HPC documentation.
r2344 latex_documents = [
('index', 'ipython.tex', 'IPython Documentation',
Min RK
python3 syntax fixes on various scripts...
r20277 u"""The IPython Development Team""", 'manual', True),
Brian Granger
Initial draft of Windows HPC documentation.
r2344 ('parallel/winhpc_index', 'winhpc_whitepaper.tex',
'Using IPython on Windows HPC Server 2008',
Min RK
python3 syntax fixes on various scripts...
r20277 u"Brian E. Granger", 'manual', True)
Brian Granger
Initial draft of Windows HPC documentation.
r2344 ]
Brian E Granger
Beginning to organize the rst documentation.
r1256
# The name of an image file (relative to this directory) to place at the top of
# the title page.
#latex_logo = None
# For "manual" documents, if this is true, then toplevel headings are parts,
# not chapters.
#latex_use_parts = False
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Additional stuff for the LaTeX preamble.
Ville M. Vainio
docs: new changes by james spencer to improve pdf doc style....
r1185 #latex_preamble = ''
Ville M. Vainio
add ipython.rst to sphinx source
r1116
# Documents to append as an appendix to all manuals.
#latex_appendices = []
# If false, no module index is generated.
Fernando Perez
Several small fixes during code review with Brian....
r2339 latex_use_modindex = True
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539
Takafumi Arakaki
Add info make target that was missing in old Sphinx
r10009 # Options for texinfo output
# --------------------------
texinfo_documents = [
(master_doc, 'ipython', 'IPython Documentation',
'The IPython Development Team',
'IPython',
'IPython Documentation',
'Programming',
1),
]
Matthias BUSSONNIER
common IPython prefix for ModIndex
r13812 modindex_common_prefix = ['IPython.']
Takafumi Arakaki
Add info make target that was missing in old Sphinx
r10009
Fernando Perez
Many fixes to the documentation prior to release 0.9....
r1695 # Cleanup
# -------
# delete release info to avoid pickling errors from sphinx
Fernando Perez
Update changes file and release info, as well as Sphinx conf tools.
r1539 del iprelease