We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2260c72 commit 14eb964Copy full SHA for 14eb964
1 file changed
.github/unittest/linux_libs/scripts_gym/run_all.sh
@@ -60,15 +60,9 @@ else
60
fi
61
62
# 6. Install tensordict
63
+# Note: tensordict dropped Python 3.9 support after 0.6.x, so we pin to 0.6.2 for py39 compatibility
64
printf "* Installing tensordict\n"
-if [[ "$RELEASE" == 0 ]]; then
65
- uv pip install "pybind11[global]"
66
- # Use pip for --ignore-requires-python (not supported by uv)
67
- pip install git+https://github.com/pytorch/tensordict.git --no-deps --ignore-requires-python
68
-else
69
70
- pip install tensordict --no-deps --ignore-requires-python
71
-fi
+uv pip install "tensordict==0.6.2" --no-deps
72
73
# Smoke test tensordict
74
python -c "import tensordict"
0 commit comments