diff options
author | Tausif Rahman <tausif.rahman@mongodb.com> | 2022-10-28 21:19:31 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2022-10-28 21:57:13 +0000 |
commit | fb5daecc948055be2ddda8b1f93cf111579375e9 (patch) | |
tree | 1ebd598dafab4a981ce24fb50f86ef17fc56c290 | |
parent | 3e1f95fe1a80f190ad42343467c57ca1be63a1f1 (diff) | |
download | mongo-fb5daecc948055be2ddda8b1f93cf111579375e9.tar.gz |
SERVER-70938 Remove --system-site-packages from virtual env setup
-rw-r--r-- | etc/evergreen.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/etc/evergreen.yml b/etc/evergreen.yml index c892a1fe959..adf46b6627b 100644 --- a/etc/evergreen.yml +++ b/etc/evergreen.yml @@ -1157,9 +1157,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 |