Skip to content

Commit 524a3f5

Browse files
Vincent Moensvmoens
Vincent Moens
authored andcommitted
[Versioning] v0.9
ghstack-source-id: 07d1d0f Pull-Request-resolved: #2975
1 parent 6ca216e commit 524a3f5

File tree

7 files changed

+18
-7
lines changed

7 files changed

+18
-7
lines changed

.github/scripts/pre-build-script-win.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
pip install --upgrade setuptools
44

5-
export TORCHRL_BUILD_VERSION=0.8.0
5+
export TORCHRL_BUILD_VERSION=0.9.0

.github/scripts/td_script.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
export TORCHRL_BUILD_VERSION=0.8.0
3+
export TORCHRL_BUILD_VERSION=0.9.0
44
pip install --upgrade setuptools
55

66
# Check if ARCH is set to aarch64

.github/scripts/version_script.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@echo off
2-
set TORCHRL_BUILD_VERSION=0.8.0
2+
set TORCHRL_BUILD_VERSION=0.9.0
33
echo TORCHRL_BUILD_VERSION is set to %TORCHRL_BUILD_VERSION%
44

55
@echo on

.github/unittest/linux/scripts/run_all.sh

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,14 @@ set -v
99

1010
if [[ $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

.github/unittest/linux_olddeps/scripts_gym_0_13/run_test.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,11 @@ python .github/unittest/helpers/coverage_run_parallel.py -m pytest test/smoke_te
2828
export DISPLAY=:99
2929
Xvfb :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
3438
coverage combine

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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()

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.8.0
1+
0.9.0

0 commit comments

Comments
 (0)