summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTausif Rahman <tausif.rahman@mongodb.com>2022-10-28 21:19:31 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-31 15:09:17 +0000
commitc1158a7d97c4603beca884b4f3a990c95d5f455f (patch)
treea8773e1fd248a8bd727b62392044eba07dc29604
parent5862dae0bb454be2c3241da1699bc545701b1379 (diff)
downloadmongo-c1158a7d97c4603beca884b4f3a990c95d5f455f.tar.gz
SERVER-70938 Remove --system-site-packages from virtual env setup
(cherry picked from commit fb5daecc948055be2ddda8b1f93cf111579375e9)
-rw-r--r--etc/evergreen.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml
index 881604a07dc..a7dbb0bb24a 100644
--- a/etc/evergreen.yml
+++ b/etc/evergreen.yml
@@ -1051,9 +1051,9 @@ functions:
# python path as 'C:\python\python_version'
python_loc=$(cygpath -w $python_loc)
venv_dir="$(cygpath -w "$venv_dir")"
- "$virtualenv_loc" --python "$python_loc" --system-site-packages "$venv_dir"
+ "$virtualenv_loc" --python "$python_loc" "$venv_dir"
else
- "$python_loc" -m venv --system-site-packages "$venv_dir"
+ "$python_loc" -m venv "$venv_dir"
fi
export VIRTUAL_ENV_DISABLE_PROMPT=yes