From 7a358dc65ed767323eee1aefd2c3fb41a1cabce7 Mon Sep 17 00:00:00 2001 From: Nicolas Hug Date: Tue, 5 Mar 2024 10:59:17 +0000 Subject: [PATCH] Remove pinning of mpmath --- .github/scripts/setup-env.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/scripts/setup-env.sh b/.github/scripts/setup-env.sh index d67c221b766..a4f113c367f 100755 --- a/.github/scripts/setup-env.sh +++ b/.github/scripts/setup-env.sh @@ -87,8 +87,7 @@ case $GPU_ARCH_TYPE in ;; esac PYTORCH_WHEEL_INDEX="https://download.pytorch.org/whl/${CHANNEL}/${GPU_ARCH_ID}" -# TODO: remove pinning of mpmath when https://github.com/pytorch/vision/issues/8292 is properly fixed. -pip install --progress-bar=off "mpmath<1.4" --pre torch --index-url="${PYTORCH_WHEEL_INDEX}" +pip install --progress-bar=off --pre torch --index-url="${PYTORCH_WHEEL_INDEX}" if [[ $GPU_ARCH_TYPE == 'cuda' ]]; then python -c "import torch; exit(not torch.cuda.is_available())"