Skip to content

Commit

Permalink
prepare pip release. fix #221 and adds checklist.
Browse files Browse the repository at this point in the history
  • Loading branch information
lanpa committed Jan 2, 2019
1 parent 5042f7a commit 3a4c848
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
History
=======
1.6 (2019-01-02)
-----------------
* Many graph related bug is fixed in this version.
* New function: add_images(). This function accepts 4D iamge tensor. See documentation.
* Make add_image_with_boxes() usable.
* API change: add_video now accepts BxTxCxHxW instead of BxCxTxHxW tensor.

1.5 (2018-12-10)
-----------------
* Add API for Custom scalar
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Write TensorBoard events with simple function call.

## Install

Tested on anaconda2 / anaconda3, with PyTorch 0.4 / torchvision 0.2 / tensorboard 1.7.0
Tested on anaconda2 / anaconda3, with PyTorch 1.0.0 / torchvision 0.2.1 / tensorboard 1.12.0

`pip install tensorboardX`

Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def run(self):

setup(
name='tensorboardX',
version='1.5',
version='1.6',
description='TensorBoardX lets you watch Tensors Flow without Tensorflow',
long_description=history,
author='Tzu-Wei Huang',
Expand Down Expand Up @@ -74,5 +74,11 @@ def run(self):
tests_require=test_requirements
)


# checklist: update History.rst readme.md
# bump version number in setup.py
# commit
# add tag
# python setup.py sdist bdist_wheel --universal
# twine upload dist/*
# push commit

0 comments on commit 3a4c848

Please sign in to comment.