From: Debian Science Team Date: Thu, 7 May 2020 10:57:06 +0000 (+0100) Subject: deb_doc_donotoverride_PYTHONPATH X-Git-Tag: archive/raspbian/0.25.3+dfsg2-2+rpi1^2~23 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=2473ed6f7f3abf63f166dd863fe148e20136a616;p=pandas.git deb_doc_donotoverride_PYTHONPATH Gbp-Pq: Name deb_doc_donotoverride_PYTHONPATH --- diff --git a/doc/make.py b/doc/make.py index 48febef2..7dbc5efc 100755 --- a/doc/make.py +++ b/doc/make.py @@ -350,8 +350,9 @@ def main(): # external libraries (namely Sphinx) to compile this module and resolve # the import of `python_path` correctly. The latter is used to resolve # the import within the module, injecting it into the global namespace - os.environ["PYTHONPATH"] = args.python_path - sys.path.insert(0, args.python_path) + # Debian: we set it outside + #os.environ["PYTHONPATH"] = args.python_path + #sys.path.insert(0, args.python_path) globals()["pandas"] = importlib.import_module("pandas") # Set the matplotlib backend to the non-interactive Agg backend for all