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 2
2
3
3
pip install --upgrade setuptools
4
4
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 1
1
#! /bin/bash
2
2
3
- export TORCHRL_BUILD_VERSION=0.8 .0
3
+ export TORCHRL_BUILD_VERSION=0.9 .0
4
4
pip install --upgrade setuptools
5
5
6
6
# Check if ARCH is set to aarch64
Original file line number Diff line number Diff line change 1
1
@ echo off
2
- set TORCHRL_BUILD_VERSION = 0.8 .0
2
+ set TORCHRL_BUILD_VERSION = 0.9 .0
3
3
echo TORCHRL_BUILD_VERSION is set to %TORCHRL_BUILD_VERSION%
4
4
5
5
@ echo on
Original file line number Diff line number Diff line change 9
9
10
10
if [[ $OSTYPE != ' darwin' * ]]; then
11
11
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
13
20
14
21
apt-get install -y libglfw3 libgl1-mesa-glx libosmesa6 libglew-dev
15
22
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
28
28
export DISPLAY=:99
29
29
Xvfb :99 -screen 0 1400x900x24 > /dev/null 2>&1 &
30
30
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
+
32
36
# pytest --instafail -v --durations 200
33
37
# python test/test_libs.py
34
38
coverage combine
Original file line number Diff line number Diff line change @@ -172,7 +172,7 @@ def _main(argv):
172
172
if is_nightly :
173
173
tensordict_dep = "tensordict-nightly"
174
174
else :
175
- tensordict_dep = "tensordict>=0.8.1 ,<0.9 .0"
175
+ tensordict_dep = "tensordict>=0.9.0 ,<0.10 .0"
176
176
177
177
if is_nightly :
178
178
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