Skip to content

[Versioning] v0.9 #2975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 29, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/scripts/pre-build-script-win.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@

pip install --upgrade setuptools

export TORCHRL_BUILD_VERSION=0.8.0
export TORCHRL_BUILD_VERSION=0.9.0
2 changes: 1 addition & 1 deletion .github/scripts/td_script.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/bash

export TORCHRL_BUILD_VERSION=0.8.0
export TORCHRL_BUILD_VERSION=0.9.0
pip install --upgrade setuptools

# Check if ARCH is set to aarch64
Expand Down
2 changes: 1 addition & 1 deletion .github/scripts/version_script.bat
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@echo off
set TORCHRL_BUILD_VERSION=0.8.0
set TORCHRL_BUILD_VERSION=0.9.0
echo TORCHRL_BUILD_VERSION is set to %TORCHRL_BUILD_VERSION%

@echo on
Expand Down
9 changes: 8 additions & 1 deletion .github/unittest/linux/scripts/run_all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,14 @@ set -v

if [[ $OSTYPE != 'darwin'* ]]; then
apt-get update && apt-get upgrade -y
apt-get install -y vim git wget libsdl2-dev libsdl2-2.0-0 cmake
apt-get install -y vim git wget cmake

# Enable universe repository
apt-get install -y software-properties-common
add-apt-repository universe
apt-get update

apt-get install -y libsdl2-dev libsdl2-2.0-0

apt-get install -y libglfw3 libgl1-mesa-glx libosmesa6 libglew-dev
apt-get install -y libglvnd0 libgl1 libglx0 libegl1 libgles2 xvfb
Expand Down
6 changes: 5 additions & 1 deletion .github/unittest/linux_olddeps/scripts_gym_0_13/run_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,11 @@ python .github/unittest/helpers/coverage_run_parallel.py -m pytest test/smoke_te
export DISPLAY=:99
Xvfb :99 -screen 0 1400x900x24 > /dev/null 2>&1 &

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
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 \
--ignore test/llm \
--timeout=120 --mp_fork_if_no_cuda

#pytest --instafail -v --durations 200
#python test/test_libs.py
coverage combine
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ def _main(argv):
if is_nightly:
tensordict_dep = "tensordict-nightly"
else:
tensordict_dep = "tensordict>=0.8.1,<0.9.0"
tensordict_dep = "tensordict>=0.9.0,<0.10.0"

if is_nightly:
version = get_nightly_version()
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.0
0.9.0
Loading