File tree 6 files changed +10
-5
lines changed
6 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 1
1
CHANGELOG <br >
2
2
==============
3
3
4
+ ## 6.7.3 (2021-11-27)
5
+ ---------------------
6
+ - Update ` editdistpy ` dependency version
7
+
4
8
## 6.7.2 (2021-11-25)
5
9
---------------------
6
10
- Fix typo of Dameruau to Damerau in various places. Can potentially break some setups that explicitly ` _distance_algorithm `
Original file line number Diff line number Diff line change 1
- editdistpy == 0.1.2rc3
1
+ editdistpy == 0.1.2
2
2
numpydoc == 1.1.0
3
3
sphinx == 4.3.0
4
4
sphinx-autodoc-typehints == 1.12.0
Original file line number Diff line number Diff line change 1
- editdistpy == 0.1.2rc3
1
+ editdistpy == 0.1.2
2
2
3
3
# For testing
4
4
codecov == 2.1.12
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ include_package_data = True
29
29
packages = find:
30
30
python_requires = >=3.6
31
31
install_requires =
32
- editdistpy ==0.1.2rc3
32
+ editdistpy ==0.1.2
33
33
34
34
[options.package_data]
35
35
symspellpy = frequency_*.txt
Original file line number Diff line number Diff line change 19
19
.. moduleauthor:: Wolf Garbe <[email protected] >
20
20
"""
21
21
22
- __version__ = "6.7.3rc1 "
22
+ __version__ = "6.7.3 "
23
23
24
24
import logging
25
25
import os
Original file line number Diff line number Diff line change @@ -629,7 +629,8 @@ def lookup_compound(
629
629
uppercase vs lowercase --- should be carried over from `phrase`.
630
630
split_by_space: Splits the phrase into words simply based on space.
631
631
ignore_any_term_with_digits: A flag to determine whether any term
632
- with digits is left alone during the spell checking process.
632
+ with digits is left alone during the spell checking process. Only
633
+ works when ``ignore_non_words` is also ``True``.
633
634
634
635
Returns:
635
636
A list of :class:`SuggestItem` objects representing suggested correct
You can’t perform that action at this time.
0 commit comments