Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare gensim v3.8.2 to pin smart_open for Py2.7 compatibility #2787

Merged
merged 7 commits into from
Apr 10, 2020
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -276,8 +276,8 @@ def finalize_options(self):
])

if (3, 0) < sys.version_info < (3, 7):
linux_testenv.extend(['nmslib'])
linux_testenv.extend(['nmslib'])

docs_testenv = linux_testenv + distributed_env + [
'sphinx',
'sphinxcontrib-napoleon',
Expand Down Expand Up @@ -360,7 +360,7 @@ def finalize_options(self):

url='http://radimrehurek.com/gensim',
download_url='http://pypi.python.org/pypi/gensim',

license='LGPLv2.1',

keywords='Singular Value Decomposition, SVD, Latent Semantic Indexing, '
Expand Down Expand Up @@ -395,7 +395,7 @@ def finalize_options(self):
NUMPY_STR,
'scipy >= 0.18.1',
'six >= 1.5.0',
'smart_open >= 1.8.1',
'smart_open >= 1.8.1, < 1.11', # smart_open >= 1.11 is py3+ only. TODO: Remove once we drop py2.7 from gensim too.
],
tests_require=linux_testenv,
extras_require={
Expand Down