File tree Expand file tree Collapse file tree 3 files changed +20
-4
lines changed
Expand file tree Collapse file tree 3 files changed +20
-4
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
1111### Added
1212
13+ ### Changed
14+
15+ ### Fixed
16+
17+ ## v0.1.3
18+
19+ ### Added
20+
1321* A CHANGELOG.md file.
1422
1523### Changed
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ dist-a2c:
2020 OMP_NUM_THREADS=1 \
2121 MKL_NUM_THREADS=1 \
2222 python -m torch.distributed.launch \
23- --nproc_per_node=16 \
23+ --nproc_per_node=6 \
2424 examples/atari/dist_a2c_atari.py
2525
2626a2c :
@@ -102,6 +102,14 @@ docs:
102102docs-deploy :
103103 cd docs && pydocmd gh-deploy
104104
105+ # https://dev.to/neshaz/a-tutorial-for-tagging-releases-in-git-147e
106+ release :
107+ echo ' Do not forget to bump the CHANGELOG.md'
108+ echo ' Tagging v' $(shell python -c 'print(open("cherry/_version.py") .read()[15:-2])' )
109+ sleep 3
110+ git tag -a v$(shell python -c 'print(open("cherry/_version.py") .read()[15:-2])' )
111+ git push origin --tags
112+
105113publish :
106- python setup.py sdist
107- twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
114+ python setup.py sdist # Create package
115+ twine upload --repository-url https://upload.pypi.org/legacy/ dist/* # Push to PyPI
Original file line number Diff line number Diff line change 1- __version__ = '0.1.2 '
1+ __version__ = '0.1.3 '
You can’t perform that action at this time.
0 commit comments