Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.
Open
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions .github/scripts/validate_binaries.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
if [[ ${MATRIX_PACKAGE_TYPE} = "conda" ]]; then
#special case for Python 3.11
if [[ ${MATRIX_PYTHON_VERSION} == '3.11' ]]; then
conda install -y torchtext -c malfet -c ${PYTORCH_CONDA_CHANNEL}
conda install -y torchtext -c malfet -c "${PYTORCH_CONDA_CHANNEL}"
else
conda install -y torchtext -c ${PYTORCH_CONDA_CHANNEL}
conda install -y torchtext -c "${PYTORCH_CONDA_CHANNEL}"
fi
else
pip install ${PYTORCH_PIP_PREFIX} torchtext --index-url ${PYTORCH_PIP_DOWNLOAD_URL}
pip install "${PYTORCH_PIP_PREFIX}" torchtext --index-url "${PYTORCH_PIP_DOWNLOAD_URL}"
fi

python ./test/smoke_tests/smoke_tests.py