We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ff77695 commit 61ff2f4Copy full SHA for 61ff2f4
.github/unittest/linux/scripts/run_all.sh
@@ -238,6 +238,13 @@ else
238
uv_pip_install --no-deps tensordict
239
fi
240
241
+# install torchcodec (from source for nightly to match PyTorch ABI)
242
+if [[ "$RELEASE" == 0 ]]; then
243
+ uv_pip_install --no-build-isolation git+https://github.com/meta-pytorch/torchcodec.git
244
+else
245
+ uv_pip_install torchcodec
246
+fi
247
+
248
printf "* Installing torchrl\n"
249
if [[ "$RELEASE" == 0 ]]; then
250
uv_pip_install -e . --no-build-isolation --no-deps
0 commit comments