From bbb2873ecc60a5f33bd131569ab0c932eb901b46 Mon Sep 17 00:00:00 2001 From: Mikhail Shchatko Date: Thu, 15 Aug 2024 22:15:54 +0300 Subject: [PATCH] SERVER-93482 Log python version in use (#26023) GitOrigin-RevId: e8a71a597ff0079fe272705c1580ea160e9f626c --- evergreen/prelude_venv.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/evergreen/prelude_venv.sh b/evergreen/prelude_venv.sh index c4cafb61fa6..10d06060738 100644 --- a/evergreen/prelude_venv.sh +++ b/evergreen/prelude_venv.sh @@ -27,5 +27,5 @@ function activate_venv { fi export PIP_CACHE_DIR=${workdir}/pip_cache - echo "python set to $(which $python)" + echo "python set to $(which $python) and python version: $($python --version)" }