Skip to content

Commit

Permalink
Disable Python 3.12 validate temporarily (pytorch#1633)
Browse files Browse the repository at this point in the history
Summary:

Disabling python 3.12 for validating binaries until Torch elastic issue: pytorch/pytorch#116423 is resolved

Reviewed By: henrylhtsang

Differential Revision: D52809181
  • Loading branch information
PaulZhang12 authored and facebook-github-bot committed Jan 16, 2024
1 parent 431fb6c commit 99f0a24
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/scripts/validate_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ if [[ ${MATRIX_GPU_ARCH_TYPE} = 'rocm' ]]; then
exit 0
fi

if [[ ${MATRIX_PYTHON_VERSION} = '3.12' ]]; then
echo "Temporarily disable validation for Python 3.12"
exit 0
fi

if [[ ${MATRIX_GPU_ARCH_TYPE} = 'cuda' ]]; then
export CUDA_VERSION="cu118"
else
Expand Down

0 comments on commit 99f0a24

Please sign in to comment.