Skip to content

Commit

Permalink
update documentation settings (#683)
Browse files Browse the repository at this point in the history
Signed-off-by: xavier dupré <xavier.dupre@gmail.com>
  • Loading branch information
xadupre authored and sdpython committed Jul 27, 2021
1 parent 0ddb99b commit b998020
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,20 @@
#
# Configuration file for the Sphinx documentation builder.

from github_link import make_linkcode_resolve
import os
import sys
import warnings
import skl2onnx
import sphinx_readable_theme

sys.path.append(os.path.abspath('exts'))
from github_link import make_linkcode_resolve


# -- Project information -----------------------------------------------------

project = 'sklearn-onnx'
copyright = '2018-2020, Microsoft'
copyright = '2018-2021, Microsoft'
author = 'Microsoft'
version = skl2onnx.__version__
release = version
Expand Down Expand Up @@ -121,13 +121,12 @@
'capture_repr': ('_repr_html_', '__repr__'),
'ignore_repr_types': r'matplotlib.text|matplotlib.axes',
'binder': {
'org': 'microsoft',
'repo': 'skl2onnx',
'org': 'onnx',
'repo': 'sklearn-onnx',
'binderhub_url': 'https://mybinder.org',
'branch': 'master',
'dependencies': os.path.abspath(
os.path.join(os.path.dirname(__file__), 'requirements.txt')),
'use_jupyter_lab': True
os.path.join(os.path.dirname(__file__), 'requirements.txt'))
},
}

Expand Down

0 comments on commit b998020

Please sign in to comment.