Skip to content

Commit de5f785

Browse files
committed
fix handling of free-threaded python on windows
1 parent b247cb8 commit de5f785

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.evergreen/scripts/setup-uv-python.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ if [ -z "${UV_PYTHON:-}" ]; then
3737
_python=$(echo "$_python" | sed 's/t//g')
3838
_python="/Library/Frameworks/$framework_dir.Framework/Versions/$_python/bin/$binary_name"
3939
elif [ "Windows_NT" = "${OS:-}" ]; then
40-
_python=$(echo $_python | cut -d. -f1,2 | sed 's/\.//g; s/t//g')
40+
_python=$(echo $_python | cut -d. -f1,2 | sed 's/\.//g')
4141
if [ -n "${IS_WIN32:-}" ]; then
4242
_python="C:/python/32/Python$_python/python.exe"
4343
else

0 commit comments

Comments
 (0)