fix(build): alias python to 3.8 globally

Internal CI defaults to older versions of Python. In the past we have
used aliases to have access to our minimum required version for building
TF-A. Now that TFTF has the same Python dependencies, this aliasing
needs to happen on a global level.

Change-Id: I989ce5289a9db5098dbde82bb3eb4169c0d50320
Signed-off-by: Harrison Mutai <harrison.mutai@arm.com>
diff --git a/script/build_package.sh b/script/build_package.sh
index ec93865..88663fc 100755
--- a/script/build_package.sh
+++ b/script/build_package.sh
@@ -1275,6 +1275,11 @@
 	fi
 fi
 
+# Install python build dependencies
+if is_arm_jenkins_env; then
+	source "$ci_root/script/install_python_deps.sh"
+fi
+
 modes="${bin_mode:-debug release}"
 for mode in $modes; do
 	echo "===== Building package in mode: $mode ====="
@@ -1450,11 +1455,6 @@
 			source "$plat_utils"
 		fi
 
-		# Install python build dependencies
-		if is_arm_jenkins_env; then
-			source "$ci_root/script/install_python_deps_tf.sh"
-		fi
-
 		poetry -C "$tf_root" install --without doc
 
 		archive="$build_archive"
diff --git a/script/install_python_deps_tf.sh b/script/install_python_deps.sh
similarity index 100%
rename from script/install_python_deps_tf.sh
rename to script/install_python_deps.sh