Skip to content

Commit

Permalink
[Versioning] v0.1.1 (pytorch#1137)
Browse files Browse the repository at this point in the history
  • Loading branch information
vmoens authored May 6, 2023
1 parent a3f6969 commit 6d030c9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
types: [opened, synchronize, reopened]
push:
branches:
- release/0.1.0
- release/0.1.1

jobs:

Expand All @@ -26,7 +26,7 @@ jobs:
run: |
export PATH="/opt/python/${{ matrix.python_version[1] }}/bin:$PATH"
python3 -mpip install wheel
BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel
BUILD_VERSION=0.1.1 python3 setup.py bdist_wheel
# NB: wheels have the linux_x86_64 tag so we rename to manylinux1
# find . -name 'dist/*whl' -exec bash -c ' mv $0 ${0/linux/manylinux1}' {} \;
# pytorch/pytorch binaries are also manylinux_2_17 compliant but they
Expand Down Expand Up @@ -66,7 +66,7 @@ jobs:
run: |
export CC=clang CXX=clang++
python3 -mpip install wheel
BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel
BUILD_VERSION=0.1.1 python3 setup.py bdist_wheel
- name: Upload wheel for the test-wheel job
uses: actions/upload-artifact@v2
with:
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
shell: bash
run: |
python3 -mpip install wheel
BUILD_VERSION=0.1.0 python3 setup.py bdist_wheel
BUILD_VERSION=0.1.1 python3 setup.py bdist_wheel
- name: Upload wheel for the test-wheel job
uses: actions/upload-artifact@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -643,7 +643,7 @@ If you're using TorchRL, please refer to this BibTeX entry to cite this work:
author = {Moens, Vincent},
title = {{TorchRL: an open-source Reinforcement Learning (RL) library for PyTorch}},
url = {https://github.com/pytorch/rl},
version = {0.1.0},
version = {0.1.1},
year = {2023}
}
```
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ def _main(argv):
"numpy",
"packaging",
"cloudpickle",
"tensordict>=0.1.0",
"tensordict>=0.1.1",
],
extras_require={
"atari": [
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.1.0
0.1.1

0 comments on commit 6d030c9

Please sign in to comment.