From 52c7ca04888a85f1178271b543853254299f2cf8 Mon Sep 17 00:00:00 2001 From: Lysandre Debut Date: Tue, 15 Jun 2021 22:03:58 +0200 Subject: [PATCH] Temporarily deactivate torch-scatter while we wait for new release (#12181) * Temporarily deactivate torch-scatter while we wait for new release * torch-1.8.1 binary for scatter * Revert to 1.8.0 * Pin torch dependency * torchaudio and torchvision --- .circleci/config.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index a393837806..37d93b8f34 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -80,7 +80,8 @@ jobs: - v0.4-{{ checksum "setup.py" }} - run: sudo apt-get -y update && sudo apt-get install -y libsndfile1-dev - run: pip install --upgrade pip - - run: pip install .[sklearn,tf-cpu,torch,testing,sentencepiece,speech,vision] + - run: pip install .[sklearn,tf-cpu,testing,sentencepiece,speech,vision] + - run: pip install -U torch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 - run: pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cpu.html - save_cache: key: v0.4-{{ checksum "setup.py" }} @@ -111,6 +112,7 @@ jobs: - run: sudo apt-get -y update && sudo apt-get install -y libsndfile1-dev - run: pip install --upgrade pip - run: pip install .[sklearn,flax,torch,testing,sentencepiece,speech,vision] + - run: pip install -U torch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 - run: pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cpu.html - save_cache: key: v0.4-{{ checksum "setup.py" }} @@ -140,6 +142,7 @@ jobs: - run: sudo apt-get -y update && sudo apt-get install -y libsndfile1-dev - run: pip install --upgrade pip - run: pip install .[sklearn,torch,testing,sentencepiece,speech,vision,timm] + - run: pip install -U torch==1.8.1 torchaudio==0.8.1 torchvision==0.9.1 - run: pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cpu.html - save_cache: key: v0.4-torch-{{ checksum "setup.py" }} @@ -224,6 +227,7 @@ jobs: - run: sudo apt-get -y update && sudo apt-get install -y libsndfile1-dev - run: pip install --upgrade pip - run: pip install .[sklearn,torch,testing,sentencepiece,speech,vision] + - run: pip install -U torch==1.8.1 torchvision==0.9.1 torchaudio==0.8.1 - run: pip install torch-scatter -f https://pytorch-geometric.com/whl/torch-1.8.0+cpu.html - save_cache: key: v0.4-torch-{{ checksum "setup.py" }}