Skip to content

Commit 2002721

Browse files
authored
upgrade (#152)
* Bump version: 2.5.1 → 2.6.0
1 parent a848fff commit 2002721

File tree

5 files changed

+25
-21
lines changed

5 files changed

+25
-21
lines changed

HISTORY.rst

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22
History
33
=======
44

5+
2.6.0 (2025-07-23)
6+
------------------
7+
8+
* making the package run on modern python
59

610
2.2.2 (2021-11-09)
711
------------------

contextualized_topic_models/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
__author__ = """Federico Bianchi"""
44
__email__ = 'f.bianchi@unibocconi.it'
5-
__version__ = '2.5.0'
5+
__version__ = '2.6.0'

requirements.txt

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
numpy>=1.26
2-
torchvision
3-
torch>=1.6.0
4-
gensim==4.3.2
5-
sentence-transformers>=2.1.1
6-
wordcloud>=1.8.1
7-
matplotlib>=3.1.3
8-
nltk==3.9.1
9-
tqdm>=4.56.0
10-
scipy>=1.4.1,<=1.12.0
11-
ipywidgets==7.5.1
12-
ipython==8.10.0
13-
ipython_genutils
1+
numpy>=1.24.0
2+
torchvision>=0.15.0
3+
torch>=2.0.0
4+
gensim>=4.3.3
5+
sentence-transformers>=2.2.0
6+
wordcloud>=1.9.0
7+
matplotlib>=3.6.0
8+
nltk>=3.8.0
9+
tqdm>=4.64.0
10+
scipy>=1.10.0
11+
ipywidgets>=8.0.0
12+
ipython>=8.12.0
13+
ipython_genutils>=0.2.0

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 2.5.0
2+
current_version = 2.6.0
33
commit = True
44
tag = True
55

@@ -22,3 +22,4 @@ test = pytest
2222

2323
[tool:pytest]
2424
collect_ignore = ['setup.py']
25+

setup.py

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,15 @@
2020
setup(
2121
author="Federico Bianchi",
2222
author_email='f.bianchi@unibocconi.it',
23-
python_requires='>=3.5',
23+
python_requires='>=3.10',
2424
classifiers=[
2525
'Development Status :: 2 - Pre-Alpha',
2626
'Intended Audience :: Developers',
2727
'License :: OSI Approved :: MIT License',
2828
'Natural Language :: English',
29-
'Programming Language :: Python :: 3.5',
30-
'Programming Language :: Python :: 3.6',
31-
'Programming Language :: Python :: 3.7',
32-
'Programming Language :: Python :: 3.8',
29+
'Programming Language :: Python :: 3.10',
30+
'Programming Language :: Python :: 3.11',
31+
'Programming Language :: Python :: 3.12',
3332
],
3433
description="Contextualized Topic Models",
3534
install_requires=requirements,
@@ -44,6 +43,6 @@
4443
test_suite='tests',
4544
tests_require=test_requirements,
4645
url='https://github.com/MilaNLProc/contextualized-topic-models',
47-
version='2.5.0',
46+
version='2.6.0',
4847
zip_safe=False,
4948
)

0 commit comments

Comments
 (0)