From f78945bd1d728c7a60700520887cd16944a37b33 Mon Sep 17 00:00:00 2001 From: Clinton Blackburn Date: Wed, 10 Feb 2016 19:46:55 -0500 Subject: [PATCH] Updated expected version for python_uninstall_version.txt Follow up to #11432. This value needs to be incremented to ensure the old package is uninstalled. ECOM-3647 --- pavelib/prereqs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pavelib/prereqs.py b/pavelib/prereqs.py index 53e28de5058d..1d4b31e1868e 100644 --- a/pavelib/prereqs.py +++ b/pavelib/prereqs.py @@ -164,7 +164,7 @@ def uninstall_python_packages(): """ # So that we don't constantly uninstall things, use a version number of the # uninstallation needs. Check it, and skip this if we're up to date. - expected_version = 2 + expected_version = 3 state_file_path = os.path.join(PREREQS_STATE_DIR, "python_uninstall_version.txt") if os.path.isfile(state_file_path): with open(state_file_path) as state_file: