Skip to content
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/version_script.bat
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
@echo off
set TENSORDICT_BUILD_VERSION=0.5.0
set TENSORDICT_BUILD_VERSION=0.6.0
echo TENSORDICT_BUILD_VERSION is set to %TENSORDICT_BUILD_VERSION%
2 changes: 1 addition & 1 deletion .github/scripts/version_script.sh
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
#!/bin/bash

export TENSORDICT_BUILD_VERSION=0.5.0
export TENSORDICT_BUILD_VERSION=0.6.0
2 changes: 1 addition & 1 deletion .github/workflows/wheels-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
shell: bash
run: |
python3 -mpip install wheel
TENSORDICT_BUILD_VERSION=0.5.0 python3 setup.py bdist_wheel
TENSORDICT_BUILD_VERSION=0.6.0 python3 setup.py bdist_wheel
- name: Upload wheel for the test-wheel job
uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ def _get_pytorch_version(is_nightly, is_local):
# if "PYTORCH_VERSION" in os.environ:
# return f"torch=={os.environ['PYTORCH_VERSION']}"
if is_nightly:
return "torch>=2.5.0.dev"
return "torch>=2.6.0.dev"
if is_local:
return "torch"
return "torch>=2.4.0"
return "torch>=2.5.0"


def _get_packages():
Expand Down Expand Up @@ -198,7 +198,6 @@ def _main(argv):
},
zip_safe=False,
classifiers=[
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.5.0
0.6.0
Loading