From 9c7cb8e9abeb58d2b922e1a1f804fbaa3fafaa62 Mon Sep 17 00:00:00 2001 From: Ben Mabey Date: Sun, 31 Jan 2016 08:22:15 -0700 Subject: [PATCH] releases v1.4.0 --- HISTORY.rst | 10 +++++++++- pyLDAvis/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 11 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 2f436498..cc46777c 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,7 +3,15 @@ History ------- -1.3.5 (2015-12-18) +1.4.0 (2016-01-31) +--------------------- + +* Updated to newest version of skibio for PCoA mds. +* requirements.txt cleanup +* New 'tsne' option for prepare, see docs and notebook for more info. + + + 1.3.5 (2015-12-18) --------------------- * Add explicit version info for scikit-bio since the API has changed. diff --git a/pyLDAvis/__init__.py b/pyLDAvis/__init__.py index efc64099..bac51ab5 100755 --- a/pyLDAvis/__init__.py +++ b/pyLDAvis/__init__.py @@ -38,7 +38,7 @@ "display", "show", "save_html", "save_json", "enable_notebook", "disable_notebook"] -__version__ = '1.3.5' +__version__ = '1.4.0' from ._display import * from ._prepare import prepare, js_PCoA, PreparedData diff --git a/setup.py b/setup.py index 6d22697d..6d410dc5 100755 --- a/setup.py +++ b/setup.py @@ -55,7 +55,7 @@ def run_tests(self): setup( name='pyLDAvis', - version='1.3.5', + version='1.4.0', description="Interactive topic model visualization. Port of the R package.", long_description=readme + '\n\n' + history, author="Ben Mabey",