diff --git a/.travis.yml b/.travis.yml index 425ad6fa..44373d91 100644 --- a/.travis.yml +++ b/.travis.yml @@ -22,7 +22,7 @@ install: - conda info -a # Replace dep1 dep2 ... with your dependencies - - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION chainer pytorch-nightly -c pytorch + - conda create -q -n test-environment python=$TRAVIS_PYTHON_VERSION chainer pytorch -c pytorch - source activate test-environment - which python - conda list diff --git a/HISTORY.rst b/HISTORY.rst index 6e5c189f..b9f1efdb 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,5 +1,10 @@ History ======= +1.2 (2018-04-21) +----------------- +* Supports tensorshape information in graph visualization. Drop support for 0.3.1 +* Adds add_video function + 1.1 (2018-02-21) ----------------- * Supports pytorch 0.3.1 (hacky) diff --git a/README.md b/README.md index dbf93c37..420067f7 100644 --- a/README.md +++ b/README.md @@ -7,18 +7,18 @@ Write TensorBoard events with simple function call. -* Support `scalar`, `image`, `histogram`, `audio`, `text`, `graph`, `onnx_graph`, `embedding` and `pr_curve` summaries. +* Support `scalar`, `image`, `histogram`, `audio`, `text`, `graph`, `onnx_graph`, `embedding`, `pr_curve` and `video` summaries. * [Demo](http://35.197.26.245:6006) -* `demo_graph.py` needs tensorboardX>=1.0 and pytorch>=0.3.1 to work (for scoping support). +* requirement for `demo_graph.py` is tensorboardX>=1.2 and pytorch>=0.4 * [FAQ](https://github.com/lanpa/tensorboard-pytorch/wiki) ## Install -Tested on anaconda2 / anaconda3, with PyTorch 0.3 / torchvision 0.2 / tensorflow-tensorboard 1.5.0 +Tested on anaconda2 / anaconda3, with PyTorch 0.4 / torchvision 0.2 / tensorboard 1.7.0 `pip install tensorboardX` diff --git a/setup.py b/setup.py index 48626e3d..08fbc855 100644 --- a/setup.py +++ b/setup.py @@ -19,7 +19,7 @@ setup( name='tensorboardX', - version='1.1', + version='1.2', description='TensorBoardX lets you watch Tensors Flow without Tensorflow', long_description= history, author='Tzu-Wei Huang',