File tree Expand file tree Collapse file tree 7 files changed +18
-7
lines changed
linux_olddeps/scripts_gym_0_13 Expand file tree Collapse file tree 7 files changed +18
-7
lines changed Original file line number Diff line number Diff line change 22
33pip install --upgrade setuptools
44
5- export TORCHRL_BUILD_VERSION=0.8 .0
5+ export TORCHRL_BUILD_VERSION=0.9 .0
Original file line number Diff line number Diff line change 11#! /bin/bash
22
3- export TORCHRL_BUILD_VERSION=0.8 .0
3+ export TORCHRL_BUILD_VERSION=0.9 .0
44pip install --upgrade setuptools
55
66# Check if ARCH is set to aarch64
Original file line number Diff line number Diff line change 11@ echo off
2- set TORCHRL_BUILD_VERSION = 0.8 .0
2+ set TORCHRL_BUILD_VERSION = 0.9 .0
33echo TORCHRL_BUILD_VERSION is set to %TORCHRL_BUILD_VERSION%
44
55@ echo on
Original file line number Diff line number Diff line change 99
1010if [[ $OSTYPE != ' darwin' * ]]; then
1111 apt-get update && apt-get upgrade -y
12- apt-get install -y vim git wget libsdl2-dev libsdl2-2.0-0 cmake
12+ apt-get install -y vim git wget cmake
13+
14+ # Enable universe repository
15+ apt-get install -y software-properties-common
16+ add-apt-repository universe
17+ apt-get update
18+
19+ apt-get install -y libsdl2-dev libsdl2-2.0-0
1320
1421 apt-get install -y libglfw3 libgl1-mesa-glx libosmesa6 libglew-dev
1522 apt-get install -y libglvnd0 libgl1 libglx0 libegl1 libgles2 xvfb
Original file line number Diff line number Diff line change @@ -28,7 +28,11 @@ python .github/unittest/helpers/coverage_run_parallel.py -m pytest test/smoke_te
2828export DISPLAY=:99
2929Xvfb :99 -screen 0 1400x900x24 > /dev/null 2>&1 &
3030
31- CKPT_BACKEND=torch MUJOCO_GL=egl python .github/unittest/helpers/coverage_run_parallel.py -m pytest --instafail -v --durations 200 --ignore test/test_distributed.py --ignore test/test_rlhf.py
31+ CKPT_BACKEND=torch MUJOCO_GL=egl python .github/unittest/helpers/coverage_run_parallel.py -m pytest --instafail -v --durations 200 --ignore test/test_distributed.py \
32+ --ignore test/test_rlhf.py \
33+ --ignore test/llm \
34+ --timeout=120 --mp_fork_if_no_cuda
35+
3236# pytest --instafail -v --durations 200
3337# python test/test_libs.py
3438coverage combine
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def _main(argv):
172172 if is_nightly :
173173 tensordict_dep = "tensordict-nightly"
174174 else :
175- tensordict_dep = "tensordict>=0.8.1 ,<0.9 .0"
175+ tensordict_dep = "tensordict>=0.9.0 ,<0.10 .0"
176176
177177 if is_nightly :
178178 version = get_nightly_version ()
Original file line number Diff line number Diff line change 1- 0.8 .0
1+ 0.9 .0
You can’t perform that action at this time.
0 commit comments