Skip to content

Commit

Permalink
releases v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bmabey committed Jun 14, 2015
1 parent 90fdb66 commit ef4e0f0
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

1.2.0 (2015-06-13)
---------------------

* Updates gensim logic to be clearer and work with Python 3.x.

1.1.0 (2015-06-02)
---------------------

Expand Down
6 changes: 5 additions & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ include HISTORY.rst
include LICENSE
include README.rst

recursive-include tests *
recursive-include tests *.py
recursive-include notebooks *.ipynb
recursive-exclude notebooks/.ipynb_checkpoints *
recursive-exclude * __pycache__
recursive-exclude * *.py[co]
include tests/data/movie_reviews_input.json tests/data/movie_reviews_output.json tests/data/export_data.R

recursive-include docs *.rst conf.py Makefile make.bat
recursive-include pyLDAvis *.py *.js *.css
2 changes: 1 addition & 1 deletion pyLDAvis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"display", "show", "save_html", "save_json",
"enable_notebook", "disable_notebook"]

__version__ = '1.1.0'
__version__ = '1.2.0'

from ._display import *
from ._prepare import prepare, js_PCoA, PreparedData
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ def run_tests(self):

setup(
name='pyLDAvis',
version='1.1.0',
version='1.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/1.1.0',
download_url = 'https://github.com/bmabey/pyLDAvis/tarball/1.2.0',
packages=[
'pyLDAvis',
],
Expand Down

0 comments on commit ef4e0f0

Please sign in to comment.