You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Running the following as explained in README.md results in an error.
$ git clone https://github.com/mengaldo/PySPOD
$ cd PySPOD
$ python setup.py install
$ cd docs
$ make html
The resulting error message output by make html follows.
Running Sphinx v2.4.2
Configuration error:
There is a programmable error in your configuration file:
Traceback (most recent call last):
File "/Users/jdmoorman/opt/miniconda3/lib/python3.7/site-packages/sphinx/config.py", line 348, in eval_config_file
execfile_(filename, namespace)
File "/Users/jdmoorman/opt/miniconda3/lib/python3.7/site-packages/sphinx/util/pycompat.py", line 81, in execfile_
exec(code, _globals)
File "/Users/jdmoorman/Git/PySPOD/docs/source/conf.py", line 74, in <module>
copyright = pyspod.__copyright__
AttributeError: module 'pyspod' has no attribute '__copyright__'
make: *** [html] Error 2
Looks like the issue is related to the variables (e.g. copyright) defined on lines 22-29 of docs/conf.py being overwritten on lines 72-75 and 85-87 by undefined metadata from the pyspod package (e.g. pyspod.__copyright__).
The text was updated successfully, but these errors were encountered:
jdmoorman
changed the title
Error building documentation
Error building documentation. "AttributeError: module 'pyspod' has no attribute '__copyright__'"
Dec 15, 2020
Running the following as explained in
README.md
results in an error.The resulting error message output by
make html
follows.Looks like the issue is related to the variables (e.g.
copyright
) defined on lines 22-29 ofdocs/conf.py
being overwritten on lines 72-75 and 85-87 by undefined metadata from thepyspod
package (e.g.pyspod.__copyright__
).The text was updated successfully, but these errors were encountered: