From 3a4c848ca850015ef5b2c7184dbe65da4eb674f4 Mon Sep 17 00:00:00 2001 From: Tzu-Wei Huang Date: Wed, 2 Jan 2019 21:40:17 +0800 Subject: [PATCH] prepare pip release. fix #221 and adds checklist. --- HISTORY.rst | 7 +++++++ README.md | 2 +- setup.py | 8 +++++++- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 5049a570..5ad23f92 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -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 diff --git a/README.md b/README.md index b2b1ac8f..ad8e1544 100644 --- a/README.md +++ b/README.md @@ -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` diff --git a/setup.py b/setup.py index 077c4a6b..19cf2933 100644 --- a/setup.py +++ b/setup.py @@ -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', @@ -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 \ No newline at end of file