Skip to content

Commit

Permalink
vs 3.3.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
msusol committed Mar 24, 2021
1 parent dfdf930 commit 8e534a6
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 8 deletions.
1 change: 1 addition & 0 deletions CONTRIBUTING.rst
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ Ready to publish a new version to PyPi? Here's how the workflow to follow.

-- Publish
(pyLDAvis) $ twine upload --repository-url https://upload.pypi.org/legacy/ dist/*
(pyLDAvis) $ rm dist/*.tar.gz

Note: MacOS Big Sur is both 10.16 and 11.0 – it’s official (https://eclecticlight.co/2020/07/21/big-sur-is-both-10-16-and-11-0-its-official/) ::

Expand Down
8 changes: 8 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
History
-------

3.3.1 (2021-03-24)
--------------------

* Restored x-axis scale labels for term bars #200
* import pyLDAvis.gensim_models as gensimvis
* Deleted orphaned files.
* Update .gitignore for notebooks/* models, data.

3.3.0 (2021-03-16)
--------------------

Expand Down
1 change: 1 addition & 0 deletions Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ sklearn = "*"
scikit-learn = "*"
gensim = "*"
Jinja2 = "*"
reproducer = {editable = true, path = "."}

[dev-packages]
pytest = ">=3.7"
Expand Down
18 changes: 13 additions & 5 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion pyLDAvis/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"display", "show", "save_html", "save_json",
"enable_notebook", "disable_notebook"]

__version__ = "3.3.0"
__version__ = "3.3.1"

from pyLDAvis._display import *
from pyLDAvis._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 @@ -18,13 +18,13 @@

setup(
name='pyLDAvis',
version='3.3.0',
version='3.3.1',
description='Interactive topic model visualization. Port of the R package.',
long_description=readme,
author='Ben Mabey',
author_email='[email protected]',
url='https://github.com/bmabey/pyLDAvis',
download_url = 'https://github.com/bmabey/pyLDAvis/tarball/3.3.0',
download_url = 'https://github.com/bmabey/pyLDAvis/tarball/3.3.1',
packages=['pyLDAvis'],
package_dir={'pyLDAvis': 'pyLDAvis'},
tests_require=['pytest'],
Expand Down

0 comments on commit 8e534a6

Please sign in to comment.