]> kaliko git repositories - mpd-sima.git/commitdiff
Fixed sphinx build
authorkaliko <kaliko@azylum.org>
Fri, 9 Feb 2024 15:14:53 +0000 (16:14 +0100)
committerkaliko <kaliko@azylum.org>
Fri, 9 Feb 2024 15:14:53 +0000 (16:14 +0100)
.gitlab-ci.yml
doc/source/conf.py

index 0ae3330bc704e3bac579e630abf63b85263a4c60..fde280f64201aa9d061443ba756bacdc0250137f 100644 (file)
@@ -29,7 +29,8 @@ smoketest:
   # build wheel and source
   - python setup.py bdist_wheel sdist
   # manual and HTML documentation
-  - python setup.py build_sphinx
+  - sphinx-build -d ./build/doctrees doc/source -b man ./build/man/
+  - sphinx-build -d ./build/doctrees doc/source -b html ./build/html/
   # install
   - pip install dist/*.whl
   # smoke test
index d051efa7ae7c0859b03726b22bc26bfedb089453..d4040d07fe8b08b6406584bdb7f51586b76cb245 100644 (file)
@@ -17,6 +17,9 @@
 # add these directories to sys.path here. If the directory is relative to the
 # documentation root, use os.path.abspath to make it absolute, like shown here.
 #sys.path.insert(0, os.path.abspath('.'))
+import os
+import sys
+sys.path.insert(0, os.path.abspath('../../'))
 from sima.info import __author__
 
 # -- General configuration ------------------------------------------------