Skip to content

Commit e889fa3

Browse files
committed
update CHANGELOG for v3.8.3
1 parent 00d27b9 commit e889fa3

File tree

1 file changed

+41
-0
lines changed

1 file changed

+41
-0
lines changed

CHANGELOG.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,47 @@ Changes
33

44
## :warning: 3.8.x will be the last gensim version to support Py2.7. Starting with 4.0.0, gensim will only support Py3.5 and above
55

6+
## 3.8.3, 2020-05-03
7+
8+
This is primarily a bugfix release to bring back Py2.7 compatibility to gensim 3.8.
9+
10+
### :red_circle: Bug fixes
11+
12+
* Bring back Py27 support (PR [#2812](https://github.com/RaRe-Technologies/gensim/pull/2812), __[@mpenkov](https://github.com/mpenkov)__)
13+
* Fix wrong version reported by setup.py (Issue [#2796](https://github.com/RaRe-Technologies/gensim/issues/2796))
14+
* Fix missing C extensions (Issues [#2794](https://github.com/RaRe-Technologies/gensim/issues/2794) and [#2802](https://github.com/RaRe-Technologies/gensim/issues/2802))
15+
16+
### :+1: Improvements
17+
18+
* Wheels for Python 3.8 (__[@menshikh-iv](https://github.com/menshikh-iv)__)
19+
* Prepare for removal of deprecated `lxml.etree.cElementTree` (PR [#2777](https://github.com/RaRe-Technologies/gensim/pull/2777), __[@tirkarthi](https://github.com/tirkarthi)__)
20+
21+
### :books: Tutorial and doc improvements
22+
23+
* Update test instructions in README (PR [#2814](https://github.com/RaRe-Technologies/gensim/pull/2814), __[@piskvorky](https://github.com/piskvorky)__)
24+
25+
### :warning: Deprecations (will be removed in the next major release)
26+
27+
* Remove
28+
- `gensim.models.FastText.load_fasttext_format`: use load_facebook_vectors to load embeddings only (faster, less CPU/memory usage, does not support training continuation) and load_facebook_model to load full model (slower, more CPU/memory intensive, supports training continuation)
29+
- `gensim.models.wrappers.fasttext` (obsoleted by the new native `gensim.models.fasttext` implementation)
30+
- `gensim.examples`
31+
- `gensim.nosy`
32+
- `gensim.scripts.word2vec_standalone`
33+
- `gensim.scripts.make_wiki_lemma`
34+
- `gensim.scripts.make_wiki_online`
35+
- `gensim.scripts.make_wiki_online_lemma`
36+
- `gensim.scripts.make_wiki_online_nodebug`
37+
- `gensim.scripts.make_wiki` (all of these obsoleted by the new native `gensim.scripts.segment_wiki` implementation)
38+
- "deprecated" functions and attributes
39+
40+
* Move
41+
- `gensim.scripts.make_wikicorpus` ➡ `gensim.scripts.make_wiki.py`
42+
- `gensim.summarization` ➡ `gensim.models.summarization`
43+
- `gensim.topic_coherence` ➡ `gensim.models._coherence`
44+
- `gensim.utils` ➡ `gensim.utils.utils` (old imports will continue to work)
45+
- `gensim.parsing.*` ➡ `gensim.utils.text_utils`
46+
647
## 3.8.2, 2020-04-10
748

849
### :red_circle: Bug fixes

0 commit comments

Comments
 (0)