From 47d5b772d83559003b90e43ea4869aaa9dcfc13c Mon Sep 17 00:00:00 2001 From: Andrew Eisenberg Date: Fri, 6 Oct 2023 12:09:29 -0700 Subject: [PATCH] Updating --- python-setup/install_tools.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python-setup/install_tools.ps1 b/python-setup/install_tools.ps1 index a027c27c6..3b3c78a44 100644 --- a/python-setup/install_tools.ps1 +++ b/python-setup/install_tools.ps1 @@ -14,7 +14,7 @@ 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 Write-Host "Checking python version" -if (py -3 -c "import sys; print(0 if sys.version_info >= (3, 12) else 1)" -eq "0") { +if ((py -3 -c "import sys; print(0 if sys.version_info >= (3, 12) else 1)") -eq "0") { Write-Host "Python 3.12+ detected, adding imp.py to PYTHONPATH" Write-Output "PYTHONPATH=$Env:PYTHONPATH;$pwd/src" | Out-File -FilePath $Env:GITHUB_ENV -Encoding utf8 -Append } else {