Skip to content

Commit 1431ae5

Browse files
author
Vincent Moens
authored
[Versioning] Versions for 0.6 (#2509)
1 parent 7ff03a2 commit 1431ae5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.github/scripts/td_script.sh

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

3-
export TORCHRL_BUILD_VERSION=0.5.0
3+
export TORCHRL_BUILD_VERSION=0.6.0
44

55
${CONDA_RUN} pip install git+https://github.com/pytorch/tensordict.git -U

.github/scripts/version_script.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
set TORCHRL_BUILD_VERSION=0.5.0
2+
set TORCHRL_BUILD_VERSION=0.6.0
33
echo TORCHRL_BUILD_VERSION is set to %TORCHRL_BUILD_VERSION%

.github/workflows/wheels-legacy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
shell: bash
3636
run: |
3737
python3 -mpip install wheel
38-
TORCHRL_BUILD_VERSION=0.5.0 python3 setup.py bdist_wheel
38+
TORCHRL_BUILD_VERSION=0.6.0 python3 setup.py bdist_wheel
3939
- name: Upload wheel for the test-wheel job
4040
uses: actions/upload-artifact@v3
4141
with:

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,10 @@ def _get_pytorch_version(is_nightly, is_local):
7272
# if "PYTORCH_VERSION" in os.environ:
7373
# return f"torch=={os.environ['PYTORCH_VERSION']}"
7474
if is_nightly:
75-
return "torch>=2.5.0.dev"
75+
return "torch>=2.6.0.dev"
7676
elif is_local:
7777
return "torch"
78-
return "torch>=2.4.0"
78+
return "torch>=2.5.0"
7979

8080

8181
def _get_packages():
@@ -176,7 +176,7 @@ def _main(argv):
176176
if is_nightly:
177177
tensordict_dep = "tensordict-nightly"
178178
else:
179-
tensordict_dep = "tensordict>=0.5.0"
179+
tensordict_dep = "tensordict>=0.6.0"
180180

181181
if is_nightly:
182182
version = get_nightly_version()

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.6.0

0 commit comments

Comments
 (0)