Skip to content

Commit 8c65dcb

Browse files
authored
[Versioning] Versions for 0.6 (#1052)
1 parent f5b9ab5 commit 8c65dcb

File tree

5 files changed

+6
-7
lines changed

5 files changed

+6
-7
lines changed

.github/scripts/version_script.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
@echo off
2-
set TENSORDICT_BUILD_VERSION=0.5.0
2+
set TENSORDICT_BUILD_VERSION=0.6.0
33
echo TENSORDICT_BUILD_VERSION is set to %TENSORDICT_BUILD_VERSION%

.github/scripts/version_script.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#!/bin/bash
22

3-
export TENSORDICT_BUILD_VERSION=0.5.0
3+
export TENSORDICT_BUILD_VERSION=0.6.0

.github/workflows/wheels-windows.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
shell: bash
3535
run: |
3636
python3 -mpip install wheel
37-
TENSORDICT_BUILD_VERSION=0.5.0 python3 setup.py bdist_wheel
37+
TENSORDICT_BUILD_VERSION=0.6.0 python3 setup.py bdist_wheel
3838
- name: Upload wheel for the test-wheel job
3939
uses: actions/upload-artifact@v3
4040
with:

setup.py

+2-3
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,10 @@ def _get_pytorch_version(is_nightly, is_local):
6666
# if "PYTORCH_VERSION" in os.environ:
6767
# return f"torch=={os.environ['PYTORCH_VERSION']}"
6868
if is_nightly:
69-
return "torch>=2.5.0.dev"
69+
return "torch>=2.6.0.dev"
7070
if is_local:
7171
return "torch"
72-
return "torch>=2.4.0"
72+
return "torch>=2.5.0"
7373

7474

7575
def _get_packages():
@@ -198,7 +198,6 @@ def _main(argv):
198198
},
199199
zip_safe=False,
200200
classifiers=[
201-
"Programming Language :: Python :: 3.8",
202201
"Programming Language :: Python :: 3.9",
203202
"Programming Language :: Python :: 3.10",
204203
"Programming Language :: Python :: 3.11",

version.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.5.0
1+
0.6.0

0 commit comments

Comments
 (0)