Skip to content
Snippets Groups Projects
Commit 4559a5f1 authored by u214892's avatar u214892
Browse files

#31 suppress sphinx warnings as temporary workaround

parent 8bfa7470
No related branches found
No related tags found
No related merge requests found
...@@ -2,7 +2,8 @@ ...@@ -2,7 +2,8 @@
# #
# You can set these variables from the command line. # You can set these variables from the command line.
SPHINXOPTS = # TODO fix sphinx warnings instead of suppressing them...
SPHINXOPTS = -Q
SPHINXBUILD = python -msphinx SPHINXBUILD = python -msphinx
SPHINXPROJ = flatland SPHINXPROJ = flatland
SOURCEDIR = . SOURCEDIR = .
......
...@@ -24,7 +24,8 @@ subprocess.call(['sphinx-apidoc', '-o', 'docs/', 'flatland']) ...@@ -24,7 +24,8 @@ subprocess.call(['sphinx-apidoc', '-o', 'docs/', 'flatland'])
os.environ["SPHINXPROJ"] = "flatland" os.environ["SPHINXPROJ"] = "flatland"
os.chdir('docs') os.chdir('docs')
subprocess.call(['python', '-msphinx', '-M', 'clean', '.', '_build']) subprocess.call(['python', '-msphinx', '-M', 'clean', '.', '_build'])
subprocess.call(['python', '-msphinx', '-M', 'html', '.', '_build']) # TODO fix sphinx warnings instead of suppressing them...
subprocess.call(['python', '-mpydeps', '../flatland', '-o', '_build/html/flatland.svg']) subprocess.call(['python', '-msphinx', '-M', 'html', '.', '_build', '-Q'])
subprocess.call(['python', '-mpydeps', '../flatland', '-o', '_build/html/flatland.svg', '--no-config', '--noshow'])
browser('_build/html/index.html') browser('_build/html/index.html')
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment