Skip to content

Commit

Permalink
[Versioning] Versions for 0.6 (#1052)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens authored Oct 21, 2024
1 parent f5b9ab5 commit 8c65dcb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 7 deletions.
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

0 comments on commit 8c65dcb

Please sign in to comment.