python-Levenshtein 0.23.0__tar.gz → 0.25.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.
@@ -1,5 +1,14 @@
1
1
  ## Changelog
2
2
 
3
+ ### v0.25.0
4
+ #### Changed
5
+ - improve type hints
6
+
7
+ ### v0.24.0
8
+ #### Changed
9
+ - upgrade ``rapidfuzz-cpp`` to ``v3.0.0``
10
+ - drop support for Python 3.7
11
+
3
12
  ### v0.23.0
4
13
  #### Changed
5
14
  - added keyword argument `pad` to Hamming distance. This controls whether sequences of different
@@ -1,30 +1,29 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-Levenshtein
3
- Version: 0.23.0
3
+ Version: 0.25.0
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
- Home-page: https://github.com/maxbachmann/python-Levenshtein
5
+ Home-page: https://github.com/rapidfuzz/python-Levenshtein
6
6
  Author: Max Bachmann
7
7
  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.7
12
11
  Classifier: Programming Language :: Python :: 3.8
13
12
  Classifier: Programming Language :: Python :: 3.9
14
13
  Classifier: Programming Language :: Python :: 3.10
15
14
  Classifier: Programming Language :: Python :: 3.11
16
15
  Classifier: Programming Language :: Python :: 3.12
17
16
  Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
18
- Requires-Python: >=3.7
17
+ Requires-Python: >=3.8
19
18
  Description-Content-Type: text/markdown
20
19
  License-File: COPYING
21
- Requires-Dist: Levenshtein==0.23.0
20
+ Requires-Dist: Levenshtein==0.25.0
22
21
 
23
22
  # Levenshtein
24
23
 
25
24
  <p>
26
- <a href="https://github.com/maxbachmann/python-Levenshtein/actions">
27
- <img src="https://github.com/maxbachmann/python-Levenshtein/workflows/Build/badge.svg"
25
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/actions">
26
+ <img src="https://github.com/rapidfuzz/python-Levenshtein/workflows/Build/badge.svg"
28
27
  alt="Continous Integration">
29
28
  </a>
30
29
  <a href="https://pypi.org/project/python-Levenshtein/">
@@ -35,12 +34,12 @@ Requires-Dist: Levenshtein==0.23.0
35
34
  <img src="https://img.shields.io/pypi/pyversions/python-Levenshtein"
36
35
  alt="Python versions">
37
36
  </a>
38
- <a href="https://maxbachmann.github.io/Levenshtein">
37
+ <a href="https://rapidfuzz.github.io/Levenshtein">
39
38
  <img src="https://img.shields.io/badge/-documentation-blue"
40
39
  alt="Documentation">
41
40
  </a>
42
- <a href="https://github.com/maxbachmann/python-Levenshtein/blob/main/COPYING">
43
- <img src="https://img.shields.io/github/license/maxbachmann/python-Levenshtein"
41
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING">
42
+ <img src="https://img.shields.io/github/license/rapidfuzz/python-Levenshtein"
44
43
  alt="GitHub license">
45
44
  </a>
46
45
  </p>
@@ -54,11 +53,11 @@ computation of:
54
53
  * approximate median strings, and generally string averaging
55
54
  * string sequence and set similarity
56
55
 
57
- > :warning: The package was renamed to `Levenshtein` and can be found [here](https://github.com/maxbachmann/Levenshtein).
56
+ > :warning: The package was renamed to `Levenshtein` and can be found [here](https://github.com/rapidfuzz/Levenshtein).
58
57
  The `python-Levenshtein` package will continue to be updated alongside the new package
59
58
 
60
59
  ## Requirements
61
- * Python 3.7 or later
60
+ * Python 3.8 or later
62
61
 
63
62
  ## Installation
64
63
  ```bash
@@ -67,7 +66,7 @@ pip install levenshtein
67
66
 
68
67
  ## Documentation
69
68
 
70
- The documentation for the current version can be found at [https://maxbachmann.github.io/Levenshtein/](https://maxbachmann.github.io/Levenshtein/)
69
+ The documentation for the current version can be found at [https://rapidfuzz.github.io/Levenshtein/](https://rapidfuzz.github.io/Levenshtein/)
71
70
 
72
71
  ## Support the project
73
72
 
@@ -85,4 +84,4 @@ under the terms of the GNU General Public License as published by the Free
85
84
  Software Foundation; either version 2 of the License, or (at your option)
86
85
  any later version.
87
86
 
88
- See the file [COPYING](https://github.com/maxbachmann/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
87
+ See the file [COPYING](https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
@@ -1,8 +1,8 @@
1
1
  # Levenshtein
2
2
 
3
3
  <p>
4
- <a href="https://github.com/maxbachmann/python-Levenshtein/actions">
5
- <img src="https://github.com/maxbachmann/python-Levenshtein/workflows/Build/badge.svg"
4
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/actions">
5
+ <img src="https://github.com/rapidfuzz/python-Levenshtein/workflows/Build/badge.svg"
6
6
  alt="Continous Integration">
7
7
  </a>
8
8
  <a href="https://pypi.org/project/python-Levenshtein/">
@@ -13,12 +13,12 @@
13
13
  <img src="https://img.shields.io/pypi/pyversions/python-Levenshtein"
14
14
  alt="Python versions">
15
15
  </a>
16
- <a href="https://maxbachmann.github.io/Levenshtein">
16
+ <a href="https://rapidfuzz.github.io/Levenshtein">
17
17
  <img src="https://img.shields.io/badge/-documentation-blue"
18
18
  alt="Documentation">
19
19
  </a>
20
- <a href="https://github.com/maxbachmann/python-Levenshtein/blob/main/COPYING">
21
- <img src="https://img.shields.io/github/license/maxbachmann/python-Levenshtein"
20
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING">
21
+ <img src="https://img.shields.io/github/license/rapidfuzz/python-Levenshtein"
22
22
  alt="GitHub license">
23
23
  </a>
24
24
  </p>
@@ -32,11 +32,11 @@ computation of:
32
32
  * approximate median strings, and generally string averaging
33
33
  * string sequence and set similarity
34
34
 
35
- > :warning: The package was renamed to `Levenshtein` and can be found [here](https://github.com/maxbachmann/Levenshtein).
35
+ > :warning: The package was renamed to `Levenshtein` and can be found [here](https://github.com/rapidfuzz/Levenshtein).
36
36
  The `python-Levenshtein` package will continue to be updated alongside the new package
37
37
 
38
38
  ## Requirements
39
- * Python 3.7 or later
39
+ * Python 3.8 or later
40
40
 
41
41
  ## Installation
42
42
  ```bash
@@ -45,7 +45,7 @@ pip install levenshtein
45
45
 
46
46
  ## Documentation
47
47
 
48
- The documentation for the current version can be found at [https://maxbachmann.github.io/Levenshtein/](https://maxbachmann.github.io/Levenshtein/)
48
+ The documentation for the current version can be found at [https://rapidfuzz.github.io/Levenshtein/](https://rapidfuzz.github.io/Levenshtein/)
49
49
 
50
50
  ## Support the project
51
51
 
@@ -63,4 +63,4 @@ under the terms of the GNU General Public License as published by the Free
63
63
  Software Foundation; either version 2 of the License, or (at your option)
64
64
  any later version.
65
65
 
66
- See the file [COPYING](https://github.com/maxbachmann/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
66
+ See the file [COPYING](https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
@@ -1,30 +1,29 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-Levenshtein
3
- Version: 0.23.0
3
+ Version: 0.25.0
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
- Home-page: https://github.com/maxbachmann/python-Levenshtein
5
+ Home-page: https://github.com/rapidfuzz/python-Levenshtein
6
6
  Author: Max Bachmann
7
7
  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.7
12
11
  Classifier: Programming Language :: Python :: 3.8
13
12
  Classifier: Programming Language :: Python :: 3.9
14
13
  Classifier: Programming Language :: Python :: 3.10
15
14
  Classifier: Programming Language :: Python :: 3.11
16
15
  Classifier: Programming Language :: Python :: 3.12
17
16
  Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
18
- Requires-Python: >=3.7
17
+ Requires-Python: >=3.8
19
18
  Description-Content-Type: text/markdown
20
19
  License-File: COPYING
21
- Requires-Dist: Levenshtein==0.23.0
20
+ Requires-Dist: Levenshtein==0.25.0
22
21
 
23
22
  # Levenshtein
24
23
 
25
24
  <p>
26
- <a href="https://github.com/maxbachmann/python-Levenshtein/actions">
27
- <img src="https://github.com/maxbachmann/python-Levenshtein/workflows/Build/badge.svg"
25
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/actions">
26
+ <img src="https://github.com/rapidfuzz/python-Levenshtein/workflows/Build/badge.svg"
28
27
  alt="Continous Integration">
29
28
  </a>
30
29
  <a href="https://pypi.org/project/python-Levenshtein/">
@@ -35,12 +34,12 @@ Requires-Dist: Levenshtein==0.23.0
35
34
  <img src="https://img.shields.io/pypi/pyversions/python-Levenshtein"
36
35
  alt="Python versions">
37
36
  </a>
38
- <a href="https://maxbachmann.github.io/Levenshtein">
37
+ <a href="https://rapidfuzz.github.io/Levenshtein">
39
38
  <img src="https://img.shields.io/badge/-documentation-blue"
40
39
  alt="Documentation">
41
40
  </a>
42
- <a href="https://github.com/maxbachmann/python-Levenshtein/blob/main/COPYING">
43
- <img src="https://img.shields.io/github/license/maxbachmann/python-Levenshtein"
41
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING">
42
+ <img src="https://img.shields.io/github/license/rapidfuzz/python-Levenshtein"
44
43
  alt="GitHub license">
45
44
  </a>
46
45
  </p>
@@ -54,11 +53,11 @@ computation of:
54
53
  * approximate median strings, and generally string averaging
55
54
  * string sequence and set similarity
56
55
 
57
- > :warning: The package was renamed to `Levenshtein` and can be found [here](https://github.com/maxbachmann/Levenshtein).
56
+ > :warning: The package was renamed to `Levenshtein` and can be found [here](https://github.com/rapidfuzz/Levenshtein).
58
57
  The `python-Levenshtein` package will continue to be updated alongside the new package
59
58
 
60
59
  ## Requirements
61
- * Python 3.7 or later
60
+ * Python 3.8 or later
62
61
 
63
62
  ## Installation
64
63
  ```bash
@@ -67,7 +66,7 @@ pip install levenshtein
67
66
 
68
67
  ## Documentation
69
68
 
70
- The documentation for the current version can be found at [https://maxbachmann.github.io/Levenshtein/](https://maxbachmann.github.io/Levenshtein/)
69
+ The documentation for the current version can be found at [https://rapidfuzz.github.io/Levenshtein/](https://rapidfuzz.github.io/Levenshtein/)
71
70
 
72
71
  ## Support the project
73
72
 
@@ -85,4 +84,4 @@ under the terms of the GNU General Public License as published by the Free
85
84
  Software Foundation; either version 2 of the License, or (at your option)
86
85
  any later version.
87
86
 
88
- See the file [COPYING](https://github.com/maxbachmann/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
87
+ See the file [COPYING](https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
@@ -0,0 +1 @@
1
+ Levenshtein==0.25.0
@@ -1,16 +1,15 @@
1
1
  [metadata]
2
2
  name = python-Levenshtein
3
- version = 0.23.0
3
+ version = 0.25.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
7
7
  author = Max Bachmann
8
8
  author_email = pypi@maxbachmann.de
9
- url = https://github.com/maxbachmann/python-Levenshtein
9
+ url = https://github.com/rapidfuzz/python-Levenshtein
10
10
  license = GPL-2.0-or-later
11
11
  classifiers =
12
12
  Programming Language :: Python :: 3
13
- Programming Language :: Python :: 3.7
14
13
  Programming Language :: Python :: 3.8
15
14
  Programming Language :: Python :: 3.9
16
15
  Programming Language :: Python :: 3.10
@@ -20,9 +19,9 @@ classifiers =
20
19
  keywords = string, Levenshtein, comparison, edit-distance
21
20
 
22
21
  [options]
23
- python_requires = >=3.7
22
+ python_requires = >=3.8
24
23
  install_requires =
25
- Levenshtein==0.23.0
24
+ Levenshtein==0.25.0
26
25
 
27
26
  [egg_info]
28
27
  tag_build =
@@ -1 +0,0 @@
1
- Levenshtein==0.23.0