From e60daae4e99fecaf404e0de2acd0b22e0c9005a2 Mon Sep 17 00:00:00 2001 From: Ben Mabey Date: Wed, 10 Feb 2021 19:19:08 -0700 Subject: [PATCH] Releases v3.2.0 --- HISTORY.rst | 4 ++++ pyLDAvis/__init__.py | 2 +- setup.py | 4 ++-- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index 9b565a87..fe107f2a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,10 @@ History ------- +3.2.0 (2021-02-10) +-------------------- +* Switches the CDN to cdn.jsdelivr to get accurate mime types. + 3.1.0 (2021-02-07) -------------------- * Replaces rawgit CDN since it has been sunset. diff --git a/pyLDAvis/__init__.py b/pyLDAvis/__init__.py index 7936cb73..47570743 100755 --- a/pyLDAvis/__init__.py +++ b/pyLDAvis/__init__.py @@ -39,7 +39,7 @@ "display", "show", "save_html", "save_json", "enable_notebook", "disable_notebook"] -__version__ = '3.1.0' +__version__ = '3.2.0' from ._display import * from ._prepare import prepare, js_PCoA, PreparedData diff --git a/setup.py b/setup.py index f0acfa13..0e4e85f7 100755 --- a/setup.py +++ b/setup.py @@ -18,13 +18,13 @@ setup( name='pyLDAvis', - version='3.1.0', + version='3.2.0', description="Interactive topic model visualization. Port of the R package.", #long_description=readme + '\n\n' + history, author="Ben Mabey", author_email='ben@benmabey.com', url='https://github.com/bmabey/pyLDAvis', - download_url = 'https://github.com/bmabey/pyLDAvis/tarball/3.1.0', + download_url = 'https://github.com/bmabey/pyLDAvis/tarball/3.2.0', packages=[ 'pyLDAvis', ],