Skip to content

Commit

Permalink
added numpy dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
ddangelov committed Feb 12, 2021
1 parent c67c866 commit 95b1930
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
author = 'Dimo Angelov'

# The full version, including alpha/beta/rc tags
release = '1.0.22'
release = '1.0.23'


# -- General configuration ---------------------------------------------------
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
numpy>=1.20.0
pandas
gensim
umap-learn>=0.5.1
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
setuptools.setup(
name="top2vec",
packages=["top2vec"],
version="1.0.22",
version="1.0.23",
author="Dimo Angelov",
author_email="dimo.angelov@gmail.com",
description="Top2Vec learns jointly embedded topic, document and word vectors.",
Expand All @@ -26,6 +26,7 @@
"Operating System :: OS Independent",
],
install_requires=[
'numpy >= 1.20.0',
'pandas',
'gensim',
'umap-learn >= 0.5.1',
Expand Down
2 changes: 1 addition & 1 deletion top2vec/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from top2vec.Top2Vec import Top2Vec

__version__ = '1.0.22'
__version__ = '1.0.23'

0 comments on commit 95b1930

Please sign in to comment.