Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
bob
bob.learn.boosting
Commits
82a4e253
Commit
82a4e253
authored
Oct 05, 2016
by
Amir Mohammadi
Committed by
Tiago de Freitas Pereira
Oct 15, 2016
Browse files
[Automatic] update links and the ci mostly
parent
4cb707da
Pipeline
#4887
failed with stages
in 10 minutes and 25 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
doc/conf.py
View file @
82a4e253
...
...
@@ -30,9 +30,29 @@ extensions = [
import
sphinx
if
sphinx
.
__version__
>=
"1.4.1"
:
extensions
.
append
(
'sphinx.ext.imgmath'
)
imgmath_image_format
=
'svg'
else
:
extensions
.
append
(
'sphinx.ext.pngmath'
)
# Be picky about warnings
nitpicky
=
True
# Ignores stuff we can't easily resolve on other project's sphinx manuals
nitpick_ignore
=
[]
# Allows the user to override warnings from a separate file
if
os
.
path
.
exists
(
'nitpick-exceptions.txt'
):
for
line
in
open
(
'nitpick-exceptions.txt'
):
if
line
.
strip
()
==
""
or
line
.
startswith
(
"#"
):
continue
dtype
,
target
=
line
.
split
(
None
,
1
)
target
=
target
.
strip
()
try
:
# python 2.x
target
=
unicode
(
target
)
except
NameError
:
pass
nitpick_ignore
.
append
((
dtype
,
target
))
# Always includes todos
todo_include_todos
=
True
...
...
@@ -216,8 +236,13 @@ autodoc_default_flags = [
]
# For inter-documentation mapping:
from
bob.extension.utils
import
link_documentation
intersphinx_mapping
=
link_documentation
()
from
bob.extension.utils
import
link_documentation
,
load_requirements
sphinx_requirements
=
"extra-intersphinx.txt"
if
os
.
path
.
exists
(
sphinx_requirements
):
intersphinx_mapping
=
link_documentation
(
additional_packages
=
load_requirements
(
sphinx_requirements
))
else
:
intersphinx_mapping
=
link_documentation
()
# We want to remove all private (i.e. _. or __.__) members
# that are not in the list of accepted functions
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment