python-Levenshtein 0.22.0__tar.gz → 0.23.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/HISTORY.md +7 -1
- {python-Levenshtein-0.22.0/python_Levenshtein.egg-info → python-Levenshtein-0.23.0}/PKG-INFO +2 -2
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0/python_Levenshtein.egg-info}/PKG-INFO +2 -2
- python-Levenshtein-0.23.0/python_Levenshtein.egg-info/requires.txt +1 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/setup.cfg +2 -2
- python-Levenshtein-0.22.0/python_Levenshtein.egg-info/requires.txt +0 -1
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/COPYING +0 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/MANIFEST.in +0 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/README.md +0 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/pyproject.toml +0 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/SOURCES.txt +0 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/dependency_links.txt +0 -0
- {python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/top_level.txt +0 -0
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
## Changelog
|
|
2
2
|
|
|
3
|
+
### v0.23.0
|
|
4
|
+
#### Changed
|
|
5
|
+
- added keyword argument `pad` to Hamming distance. This controls whether sequences of different
|
|
6
|
+
length should be padded or lead to a `ValueError`
|
|
7
|
+
- upgrade to `Cython==3.0.3`
|
|
8
|
+
|
|
3
9
|
### v0.22.0
|
|
4
10
|
#### Changed
|
|
5
11
|
- add support for Python 3.12
|
|
@@ -44,7 +50,7 @@
|
|
|
44
50
|
|
|
45
51
|
### v0.20.3
|
|
46
52
|
#### Changed
|
|
47
|
-
- Added support for
|
|
53
|
+
- Added support for Python 3.11
|
|
48
54
|
|
|
49
55
|
### v0.20.2
|
|
50
56
|
#### Fixed
|
{python-Levenshtein-0.22.0/python_Levenshtein.egg-info → python-Levenshtein-0.23.0}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-Levenshtein
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.0
|
|
4
4
|
Summary: Python extension for computing string edit distances and similarities.
|
|
5
5
|
Home-page: https://github.com/maxbachmann/python-Levenshtein
|
|
6
6
|
Author: Max Bachmann
|
|
@@ -18,7 +18,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v2 or later (G
|
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: COPYING
|
|
21
|
-
Requires-Dist: Levenshtein==0.
|
|
21
|
+
Requires-Dist: Levenshtein==0.23.0
|
|
22
22
|
|
|
23
23
|
# Levenshtein
|
|
24
24
|
|
{python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0/python_Levenshtein.egg-info}/PKG-INFO
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: python-Levenshtein
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.23.0
|
|
4
4
|
Summary: Python extension for computing string edit distances and similarities.
|
|
5
5
|
Home-page: https://github.com/maxbachmann/python-Levenshtein
|
|
6
6
|
Author: Max Bachmann
|
|
@@ -18,7 +18,7 @@ Classifier: License :: OSI Approved :: GNU General Public License v2 or later (G
|
|
|
18
18
|
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: COPYING
|
|
21
|
-
Requires-Dist: Levenshtein==0.
|
|
21
|
+
Requires-Dist: Levenshtein==0.23.0
|
|
22
22
|
|
|
23
23
|
# Levenshtein
|
|
24
24
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Levenshtein==0.23.0
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[metadata]
|
|
2
2
|
name = python-Levenshtein
|
|
3
|
-
version = 0.
|
|
3
|
+
version = 0.23.0
|
|
4
4
|
description = Python extension for computing string edit distances and similarities.
|
|
5
5
|
long_description = file: README.md
|
|
6
6
|
long_description_content_type = text/markdown
|
|
@@ -22,7 +22,7 @@ keywords = string, Levenshtein, comparison, edit-distance
|
|
|
22
22
|
[options]
|
|
23
23
|
python_requires = >=3.7
|
|
24
24
|
install_requires =
|
|
25
|
-
Levenshtein==0.
|
|
25
|
+
Levenshtein==0.23.0
|
|
26
26
|
|
|
27
27
|
[egg_info]
|
|
28
28
|
tag_build =
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
Levenshtein==0.22.0
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python-Levenshtein-0.22.0 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/top_level.txt
RENAMED
|
File without changes
|