python-Levenshtein 0.21.1__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.21.1 → python-Levenshtein-0.23.0}/HISTORY.md +15 -1
- {python-Levenshtein-0.21.1/python_Levenshtein.egg-info → python-Levenshtein-0.23.0}/PKG-INFO +5 -4
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/README.md +1 -1
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0/python_Levenshtein.egg-info}/PKG-INFO +5 -4
- python-Levenshtein-0.23.0/python_Levenshtein.egg-info/requires.txt +1 -0
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/setup.cfg +4 -4
- python-Levenshtein-0.21.1/python_Levenshtein.egg-info/requires.txt +0 -1
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/COPYING +0 -0
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/MANIFEST.in +0 -0
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/pyproject.toml +0 -0
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/SOURCES.txt +0 -0
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/dependency_links.txt +0 -0
- {python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/top_level.txt +0 -0
|
@@ -1,5 +1,19 @@
|
|
|
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
|
+
|
|
9
|
+
### v0.22.0
|
|
10
|
+
#### Changed
|
|
11
|
+
- add support for Python 3.12
|
|
12
|
+
- drop support for Python 3.6
|
|
13
|
+
|
|
14
|
+
#### Added
|
|
15
|
+
- add wheels for windows arm64
|
|
16
|
+
|
|
3
17
|
### v0.21.1
|
|
4
18
|
#### Changed
|
|
5
19
|
- upgrade ``rapidfuzz-cpp`` to ``v2.0.0``
|
|
@@ -36,7 +50,7 @@
|
|
|
36
50
|
|
|
37
51
|
### v0.20.3
|
|
38
52
|
#### Changed
|
|
39
|
-
- Added support for
|
|
53
|
+
- Added support for Python 3.11
|
|
40
54
|
|
|
41
55
|
### v0.20.2
|
|
42
56
|
#### Fixed
|
{python-Levenshtein-0.21.1/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
|
|
@@ -8,16 +8,17 @@ Author-email: pypi@maxbachmann.de
|
|
|
8
8
|
License: GPL-2.0-or-later
|
|
9
9
|
Keywords: string,Levenshtein,comparison,edit-distance
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.7
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.8
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
18
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: COPYING
|
|
21
|
+
Requires-Dist: Levenshtein==0.23.0
|
|
21
22
|
|
|
22
23
|
# Levenshtein
|
|
23
24
|
|
|
@@ -57,7 +58,7 @@ computation of:
|
|
|
57
58
|
The `python-Levenshtein` package will continue to be updated alongside the new package
|
|
58
59
|
|
|
59
60
|
## Requirements
|
|
60
|
-
* Python 3.
|
|
61
|
+
* Python 3.7 or later
|
|
61
62
|
|
|
62
63
|
## Installation
|
|
63
64
|
```bash
|
{python-Levenshtein-0.21.1 → 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
|
|
@@ -8,16 +8,17 @@ Author-email: pypi@maxbachmann.de
|
|
|
8
8
|
License: GPL-2.0-or-later
|
|
9
9
|
Keywords: string,Levenshtein,comparison,edit-distance
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.6
|
|
12
11
|
Classifier: Programming Language :: Python :: 3.7
|
|
13
12
|
Classifier: Programming Language :: Python :: 3.8
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
17
|
Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
18
|
-
Requires-Python: >=3.
|
|
18
|
+
Requires-Python: >=3.7
|
|
19
19
|
Description-Content-Type: text/markdown
|
|
20
20
|
License-File: COPYING
|
|
21
|
+
Requires-Dist: Levenshtein==0.23.0
|
|
21
22
|
|
|
22
23
|
# Levenshtein
|
|
23
24
|
|
|
@@ -57,7 +58,7 @@ computation of:
|
|
|
57
58
|
The `python-Levenshtein` package will continue to be updated alongside the new package
|
|
58
59
|
|
|
59
60
|
## Requirements
|
|
60
|
-
* Python 3.
|
|
61
|
+
* Python 3.7 or later
|
|
61
62
|
|
|
62
63
|
## Installation
|
|
63
64
|
```bash
|
|
@@ -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
|
|
@@ -10,19 +10,19 @@ url = https://github.com/maxbachmann/python-Levenshtein
|
|
|
10
10
|
license = GPL-2.0-or-later
|
|
11
11
|
classifiers =
|
|
12
12
|
Programming Language :: Python :: 3
|
|
13
|
-
Programming Language :: Python :: 3.6
|
|
14
13
|
Programming Language :: Python :: 3.7
|
|
15
14
|
Programming Language :: Python :: 3.8
|
|
16
15
|
Programming Language :: Python :: 3.9
|
|
17
16
|
Programming Language :: Python :: 3.10
|
|
18
17
|
Programming Language :: Python :: 3.11
|
|
18
|
+
Programming Language :: Python :: 3.12
|
|
19
19
|
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
|
|
20
20
|
keywords = string, Levenshtein, comparison, edit-distance
|
|
21
21
|
|
|
22
22
|
[options]
|
|
23
|
-
python_requires = >=3.
|
|
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.21.1
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/SOURCES.txt
RENAMED
|
File without changes
|
|
File without changes
|
{python-Levenshtein-0.21.1 → python-Levenshtein-0.23.0}/python_Levenshtein.egg-info/top_level.txt
RENAMED
|
File without changes
|