Add workaround for python 3.12 on windows

This commit is contained in:
Andrew Eisenberg
2023-10-06 11:40:54 -07:00
parent a2dc5ffaff
commit 8975e5a8c4
2 changed files with 353 additions and 0 deletions
+7
View File
@@ -10,3 +10,10 @@ py -3 -m pip install --user virtualenv
py -3 -m pip install --user "poetry>=1.1"
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