Skip to content

Commit 87feb9c

Browse files
authored
[CI] Fix windows install (#888)
1 parent 6068856 commit 87feb9c

File tree

2 files changed

+2
-26
lines changed

2 files changed

+2
-26
lines changed

.circleci/config.yml

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1305,35 +1305,11 @@ workflows:
13051305
name: unittest_linux_examples_gpu_py3.9
13061306
python_version: '3.9'
13071307

1308-
- unittest_windows_optdepts_cpu:
1309-
cu_version: cpu
1310-
name: unittest_windows_optdepts_cpu_py3.7
1311-
python_version: '3.7'
13121308
- unittest_windows_optdepts_cpu:
13131309
cu_version: cpu
13141310
name: unittest_windows_optdepts_cpu_py3.8
13151311
python_version: '3.8'
1316-
- unittest_windows_optdepts_cpu:
1317-
cu_version: cpu
1318-
name: unittest_windows_optdepts_cpu_py3.9
1319-
python_version: '3.9'
1320-
- unittest_windows_optdepts_cpu:
1321-
cu_version: cpu
1322-
name: unittest_windows_optdepts_cpu_py3.10
1323-
python_version: '3.10'
1324-
- unittest_windows_optdepts_gpu:
1325-
cu_version: cu116
1326-
name: unittest_windows_optdepts_gpu_py3.7
1327-
python_version: '3.7'
13281312
- unittest_windows_optdepts_gpu:
13291313
cu_version: cu116
13301314
name: unittest_windows_optdepts_gpu_py3.8
13311315
python_version: '3.8'
1332-
- unittest_windows_optdepts_gpu:
1333-
cu_version: cu116
1334-
name: unittest_windows_optdepts_gpu_py3.9
1335-
python_version: '3.9'
1336-
- unittest_windows_optdepts_gpu:
1337-
cu_version: cu116
1338-
name: unittest_windows_optdepts_gpu_py3.10
1339-
python_version: '3.10'

.circleci/unittest/windows_optdepts/scripts/install.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ fi
3838
git submodule sync && git submodule update --init --recursive
3939

4040
printf "Installing PyTorch with %s\n" "${cudatoolkit}"
41-
conda install -y -c "pytorch-${UPLOAD_CHANNEL}" -c nvidia "pytorch-${UPLOAD_CHANNEL}"::pytorch[build="*${version}*"] "${cudatoolkit}"
41+
conda install -y -c "pytorch-${UPLOAD_CHANNEL}" -c nvidia pytorch "${cudatoolkit}"
4242

4343
torch_cuda=$(python -c "import torch; print(torch.cuda.is_available())")
4444
echo torch.cuda.is_available is $torch_cuda
@@ -50,7 +50,7 @@ if [ ! -z "${CUDA_VERSION:-}" ] ; then
5050
fi
5151
fi
5252

53-
pip install pip --upgrade
53+
#python -m pip install pip --upgrade
5454

5555
# install tensordict
5656
pip3 install git+https://github.com/pytorch-labs/tensordict

0 commit comments

Comments
 (0)