From 8e043b00b8934c58928f9c22bbfeda63d1293ade Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Tue, 16 Jul 2019 10:11:39 -0400 Subject: [PATCH] Closes #3330: Remove .pyc file cleanup step from upgrade script --- upgrade.sh | 6 ------ 1 file changed, 6 deletions(-) diff --git a/upgrade.sh b/upgrade.sh index 880d27d5d..793e72cda 100755 --- a/upgrade.sh +++ b/upgrade.sh @@ -10,12 +10,6 @@ cd "$(dirname "$0")" PYTHON="python3" PIP="pip3" -# TODO: Remove this in v2.6 as it is no longer needed under Python 3 -# Delete stale bytecode -COMMAND="find . -name \"*.pyc\" -delete" -echo "Cleaning up stale Python bytecode ($COMMAND)..." -eval $COMMAND - # Uninstall any Python packages which are no longer needed COMMAND="${PIP} uninstall -r old_requirements.txt -y" echo "Removing old Python packages ($COMMAND)..."