From 7f73f1d591afba823daa4a99a939217fb54d7688 Mon Sep 17 00:00:00 2001 From: Soumith Chintala Date: Tue, 14 Jan 2020 09:04:40 -0800 Subject: [PATCH] add python 3.8 workaround --- .circleci/scripts/binary_linux_test.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.circleci/scripts/binary_linux_test.sh b/.circleci/scripts/binary_linux_test.sh index fda47fa0356eb..dc8e9851fb1d9 100755 --- a/.circleci/scripts/binary_linux_test.sh +++ b/.circleci/scripts/binary_linux_test.sh @@ -11,6 +11,8 @@ if [[ "$PACKAGE_TYPE" == conda ]]; then source activate testenv >/dev/null elif [[ "$DESIRED_PYTHON" == 2.7mu ]]; then export PATH="/opt/python/cp27-cp27mu/bin:\$PATH" +elif [[ "$DESIRED_PYTHON" == 3.8m ]]; then + export PATH="/opt/python/cp38-cp38/bin:\$PATH" elif [[ "$PACKAGE_TYPE" != libtorch ]]; then python_nodot="\$(echo $DESIRED_PYTHON | tr -d m.u)" export PATH="/opt/python/cp\$python_nodot-cp\${python_nodot}m/bin:\$PATH"