From 4862e8c8f492548f9e8b3c4e0d1aa962179b0f2e Mon Sep 17 00:00:00 2001 From: AnyOldName3 Date: Sun, 21 Mar 2021 21:30:17 +0000 Subject: [PATCH] Bump aqt version --- CI/before_script.msvc.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/CI/before_script.msvc.sh b/CI/before_script.msvc.sh index dba87128a3..b2b6483ec7 100644 --- a/CI/before_script.msvc.sh +++ b/CI/before_script.msvc.sh @@ -848,9 +848,11 @@ fi wrappedExit 1 fi - if ! [ -e "aqt-venv/${VENV_BIN_DIR}/aqt" ]; then + # check version + pip list | grep 'aqtinstall\s*1.1.3' + if [ $? -ne 0 ]; then echo " Installing aqt wheel into virtualenv..." - run_cmd "aqt-venv/${VENV_BIN_DIR}/pip" install aqtinstall==0.9.2 + run_cmd "aqt-venv/${VENV_BIN_DIR}/pip" install aqtinstall==1.1.3 fi popd > /dev/null