From 39577b488ede7c6de63f72ce0a609c296b965f82 Mon Sep 17 00:00:00 2001 From: Dimo Angelov Date: Thu, 2 Nov 2023 19:43:10 -0400 Subject: [PATCH] indexing bugfix --- docs/conf.py | 2 +- setup.py | 2 +- top2vec/__init__.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 3dc419f..8961895 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -29,7 +29,7 @@ author = 'Dimo Angelov' # The full version, including alpha/beta/rc tags -release = '1.0.31' +release = '1.0.32' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index c64d059..72cfc72 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name="top2vec", packages=["top2vec"], - version="1.0.31", + version="1.0.32", author="Dimo Angelov", author_email="dimo.angelov@gmail.com", description="Top2Vec learns jointly embedded topic, document and word vectors.", diff --git a/top2vec/__init__.py b/top2vec/__init__.py index ea6cce7..3ac4905 100644 --- a/top2vec/__init__.py +++ b/top2vec/__init__.py @@ -1,3 +1,3 @@ from top2vec.Top2Vec import Top2Vec -__version__ = '1.0.31' +__version__ = '1.0.32'