From 18312707fe090d5a25b837386abd584f21d8a119 Mon Sep 17 00:00:00 2001 From: Rasmus Wriedt Larsen Date: Fri, 25 Sep 2020 12:07:22 +0200 Subject: [PATCH] Explain get_extractor_version for python setup scripts --- python-setup/auto_install_packages.py | 1 + 1 file changed, 1 insertion(+) diff --git a/python-setup/auto_install_packages.py b/python-setup/auto_install_packages.py index 54a2d9669..cdb70c6d6 100755 --- a/python-setup/auto_install_packages.py +++ b/python-setup/auto_install_packages.py @@ -114,6 +114,7 @@ def install_packages(codeql_base_dir) -> Optional[str]: print('Found Pipfile, will install packages with Pipenv', flush=True) return install_packages_with_pipenv() + # get_extractor_version returns the Python version the extractor thinks this repo is using version = extractor_version.get_extractor_version(codeql_base_dir, quiet=False) if os.path.exists('requirements.txt'):