build: remove python 3.5 requirement files (#29070)

This commit is contained in:
Usama Sadiq
2021-10-20 15:59:35 +05:00
committed by GitHub
parent 22d106daf4
commit 5a6d056568
5 changed files with 1 additions and 178 deletions

View File

@@ -28,8 +28,7 @@ function clean_file {
# Code sandbox local package installs must be non-editable due to file
# permissions issues. edxapp ones must stay editable until assorted
# packaging bugs are fixed.
if [[ "${FILE_PATH}" == "requirements/edx-sandbox/py35.txt" ||
"${FILE_PATH}" == "requirements/edx-sandbox/py38.txt" ]]; then
if [[ "${FILE_PATH}" == "requirements/edx-sandbox/py38.txt" ]]; then
sed "s|-e common/lib/|common/lib/|" ${FILE_PATH} > ${TEMP_FILE}
mv ${TEMP_FILE} ${FILE_PATH}
fi