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
doc/make.py contains the statement os.environ['PYTHONPATH'] = '..', which means it will only work with an inplace build. I need to be able to contribute to pandas documentation using an installed version of pandas. When I comment out this line, I am able to build the html documentation from source.
Is this something we want to fix? I can add an option --no-local-pandas (or whatever name makes sense), and don't overwrite the python path, but I don't know if generating the documentation with a different version of pandas makes sense.
doc/make.py contains the statement
os.environ['PYTHONPATH'] = '..'
, which means it will only work with an inplace build. I need to be able to contribute to pandas documentation using an installed version of pandas. When I comment out this line, I am able to build the html documentation from source.See this SO question for background and details.
The text was updated successfully, but these errors were encountered: