From e3c11042e40f436ef395375b4c2febfb693509da Mon Sep 17 00:00:00 2001 From: Dimo Angelov Date: Fri, 3 Nov 2023 17:53:59 -0400 Subject: [PATCH] topic 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 8961895..60f2d8f 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.32' +release = '1.0.33' # -- General configuration --------------------------------------------------- diff --git a/setup.py b/setup.py index 72cfc72..cd02f51 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setuptools.setup( name="top2vec", packages=["top2vec"], - version="1.0.32", + version="1.0.33", 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 3ac4905..dda72b4 100644 --- a/top2vec/__init__.py +++ b/top2vec/__init__.py @@ -1,3 +1,3 @@ from top2vec.Top2Vec import Top2Vec -__version__ = '1.0.32' +__version__ = '1.0.33'