Commit 90e1b626 by Clinton Blackburn

Merge pull request #11513 from edx/clintonb/package-uninstall-fix

Updated expected version for python_uninstall_version.txt
parents a26d5764 f78945bd
......@@ -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:
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment