From ff76f228dfcf5572aef47f8f337aec34efc4c7c2 Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Fri, 6 Oct 2023 12:01:08 -0700 Subject: [PATCH] Updating --- python-setup/install_tools.ps1 | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/python-setup/install_tools.ps1 b/python-setup/install_tools.ps1 index da538d122..f0a821630 100644 --- a/python-setup/install_tools.ps1 +++ b/python-setup/install_tools.ps1 @@ -13,7 +13,10 @@ py -3 -m pip install --user pipenv # If we are running greater than or equal to python 3.12, add src to the python path -if (python -c "import sys; sys.exit(0 if sys.version_info >= (3, 12) else 1)"); then - echo "Python 3.12+ detected, adding imp.py to PYTHONPATH" - echo "export PYTHONPATH=\$PYTHONPATH:$(pwd)/src" >> $GITHUB_ENV -fi +Write-Host "Checking python version" +if (python -c "import sys; sys.exit(0 if sys.version_info >= (3, 12) else 1)" -eq 0) { + Write-Host "Python 3.12+ detected, adding imp.py to PYTHONPATH" + Write-Host "PYTHONPATH=$Env:PYTHONPATH;$pwd/src" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append +} else { + Write-Host "Python 3.12+ not detected, not adding imp.py to PYTHONPATH" +}