Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions pavelib/prereqs.py
Original file line number Diff line number Diff line change
Expand Up @@ -207,6 +207,11 @@ def uninstall_python_packages():
sh("pip uninstall -y edxval")
uninstalled = True

# Uninstall django-storages
if any("django-storages" in line for line in frozen):
sh("pip uninstall -y django-storages")
uninstalled = True

if not uninstalled:
break
else:
Expand Down