IAP GITLAB

Skip to content
Snippets Groups Projects
Commit 7cd85dc6 authored by Antonio Augusto Alves Junior's avatar Antonio Augusto Alves Junior Committed by Ralf Ulrich
Browse files

Update conf.py

parent 7e9ae9c3
No related branches found
No related tags found
No related merge requests found
......@@ -17,8 +17,8 @@ read_the_docs_build = os.environ.get('READTHEDOCS', None) == 'True'
s = ''
if read_the_docs_build:
configureDoxyfile("Doxyfile.in", "Doxyfile", "../", "_build/workdir/doxygen")
s = subprocess.check_output(['git', 'rev-parse' , '--abbrev-ref' , 'HEAD'])
print("@@@@@@@@>>>>>>>>>>>> s = " + s.decode())
s = subprocess.check_output(['git', 'rev-parse' , '--abbrev-ref' , 'HEAD']).decode()
print("@@@@@@@@>>>>>>>>>>>> s = " + s)
subprocess.call('mkdir -p _build/workdir/doxygen; doxygen Doxyfile', shell=True)
html_extra_path = ['_build/workdir/']
......@@ -27,9 +27,9 @@ if read_the_docs_build:
# -- Project information -----------------------------------------------------
project = u'CORSIKA8'
copyright = u'2021, CORSIKA 8 Collaboration'
author = s.decode()#u'CORSIKA 8 Collaboration'
project = s #u'CORSIKA8'
copyright = s #u'2021, CORSIKA 8 Collaboration'
author = s #u'CORSIKA 8 Collaboration'
# The short X.Y version
version = u'0.0.0'
......
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