diff --git a/CHANGELOG.md b/CHANGELOG.md index 1dff0241c7..91916ece22 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -13,6 +13,7 @@ This release contains a major refactoring. * Speed up random number generation in word2vec model (PR [#2864](https://github.com/RaRe-Technologies/gensim/pull/2864), __[@zygm0nt](https://github.com/zygm0nt)__) * Fix deprecations in SoftCosineSimilarity (PR [#2940](https://github.com/RaRe-Technologies/gensim/pull/2940), __[@Witiko](https://github.com/Witiko)__) * Remove Keras dependency (PR [#2937](https://github.com/RaRe-Technologies/gensim/pull/2937), __[@piskvorky](https://github.com/piskvorky)__) +* Bump minimum Python version to 3.6 (PR [#2947](https://github.com/RaRe-Technologies/gensim/pull/2947), __[@gojomo](https://github.com/gojomo)__) ### :books: Tutorial and doc improvements diff --git a/docs/src/_templates/indexcontent.html b/docs/src/_templates/indexcontent.html index 052137ba51..76eb85f5c2 100644 --- a/docs/src/_templates/indexcontent.html +++ b/docs/src/_templates/indexcontent.html @@ -156,9 +156,9 @@

Quick install

Code dependencies

Gensim runs on Linux, Windows and Mac OS X, and should run on any other - platform that supports Python 2.7 or 3.5+ and NumPy. Gensim depends on the following software:

+ platform that supports Python 3.6+ and NumPy. Gensim depends on the following software:

diff --git a/setup.py b/setup.py index 29984959e4..53980eed24 100644 --- a/setup.py +++ b/setup.py @@ -207,7 +207,7 @@ def run(self): For alternative modes of installation, see the `documentation `_. -Gensim is being `continuously tested `_ under Python 3.5, 3.6, 3.7 and 3.8. +Gensim is being `continuously tested `_ under Python 3.6, 3.7 and 3.8. Support for Python 2.7 was dropped in gensim 4.0.0 – install gensim 3.8.3 if you must use Python 2.7. @@ -375,7 +375,6 @@ def run(self): 'Environment :: Console', 'Intended Audience :: Science/Research', 'Operating System :: OS Independent', - 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.8', @@ -386,7 +385,7 @@ def run(self): ], test_suite="gensim.test", - python_requires='>=3.5', + python_requires='>=3.6', setup_requires=setup_requires, install_requires=install_requires, tests_require=linux_testenv,