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
beat
beat.editor
Commits
162ae25f
Commit
162ae25f
authored
Apr 14, 2021
by
Samuel GAIST
Browse files
[doc] Pre-commit cleanup
parent
ca26eb00
Changes
2
Hide whitespace changes
Inline
Side-by-side
doc/conf.py
View file @
162ae25f
...
...
@@ -4,14 +4,12 @@
import
os
import
time
import
pkg_resources
import
sphinx_rtd_theme
from
bob.extension.utils
import
link_documentation
from
bob.extension.utils
import
load_requirements
# -- General configuration -----------------------------------------------------
# If your documentation needs a minimal Sphinx version, state it here.
...
...
@@ -237,10 +235,12 @@ autodoc_default_options = {
"show-inheritance"
:
True
,
}
if
not
'BOB_DOCUMENTATION_SERVER'
in
os
.
environ
:
# notice we need to overwrite this for BEAT projects - defaults from Bob are
# not OK
os
.
environ
[
'BOB_DOCUMENTATION_SERVER'
]
=
"https://www.idiap.ch/software/beat/docs/beat/%(name)s/%(version)s/|https://www.idiap.ch/software/beat/docs/beat/%(name)s/master/"
if
"BOB_DOCUMENTATION_SERVER"
not
in
os
.
environ
:
# notice we need to overwrite this for BEAT projects - defaults from Bob are
# not OK
os
.
environ
[
"BOB_DOCUMENTATION_SERVER"
]
=
"https://www.idiap.ch/software/beat/docs/beat/%(name)s/%(version)s/|https://www.idiap.ch/software/beat/docs/beat/%(name)s/master/"
# For inter-documentation mapping:
...
...
doc/get_dep_licenses.py
View file @
162ae25f
...
...
@@ -59,9 +59,9 @@ def _run_cmd(cmd_list):
def
_call_conda
(
extra_args
):
"""
call conda with the list of extra arguments, and return the tuple
stdout, stderr
"""
"""call conda with the list of extra arguments, and return the tuple
stdout, stderr
"""
cmd_list
=
[
os
.
environ
.
get
(
"CONDA_EXE"
)]
...
...
@@ -77,9 +77,9 @@ def _get_pip_info():
def
_clean_pkg_name
(
name
):
"""
Cleanup package name:
- lower case
- replace minus and underscore by only minus
"""Cleanup package name:
- lower case
- replace minus and underscore by only minus
"""
return
re
.
sub
(
r
"[_-]"
,
"-"
,
name
.
lower
())
...
...
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