Skip to content

Commit 6ecc17e

Browse files
committed
build: update version for release, update documentation for ignore_term_with_digits
1 parent b8da113 commit 6ecc17e

File tree

6 files changed

+10
-5
lines changed

6 files changed

+10
-5
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
CHANGELOG <br>
22
==============
33

4+
## 6.7.3 (2021-11-27)
5+
---------------------
6+
- Update `editdistpy` dependency version
7+
48
## 6.7.2 (2021-11-25)
59
---------------------
610
- Fix typo of Dameruau to Damerau in various places. Can potentially break some setups that explicitly `_distance_algorithm`

docs/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
editdistpy==0.1.2rc3
1+
editdistpy==0.1.2
22
numpydoc==1.1.0
33
sphinx==4.3.0
44
sphinx-autodoc-typehints==1.12.0

requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
editdistpy==0.1.2rc3
1+
editdistpy==0.1.2
22

33
# For testing
44
codecov==2.1.12

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ include_package_data = True
2929
packages = find:
3030
python_requires = >=3.6
3131
install_requires =
32-
editdistpy==0.1.2rc3
32+
editdistpy==0.1.2
3333

3434
[options.package_data]
3535
symspellpy = frequency_*.txt

symspellpy/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
.. moduleauthor:: Wolf Garbe <[email protected]>
2020
"""
2121

22-
__version__ = "6.7.3rc1"
22+
__version__ = "6.7.3"
2323

2424
import logging
2525
import os

symspellpy/symspellpy.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -629,7 +629,8 @@ def lookup_compound(
629629
uppercase vs lowercase --- should be carried over from `phrase`.
630630
split_by_space: Splits the phrase into words simply based on space.
631631
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``.
633634
634635
Returns:
635636
A list of :class:`SuggestItem` objects representing suggested correct

0 commit comments

Comments
 (0)