python-Levenshtein 0.26.1__tar.gz → 0.27.3__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.27.3
4
+ #### Added
5
+ - add support for python 3.14
6
+
7
+ ### v0.27.1
8
+ #### Changed
9
+ - fix build with ``scikit-build-core`` ``v0.11``
10
+ - upgrade to `Cython==3.0.12`
11
+
3
12
  ### v0.26.1
4
13
  #### Fixed
5
14
  - add missing mac os wheels
@@ -1,3 +1,3 @@
1
1
  include README.md
2
2
  include HISTORY.md
3
- include COPYING
3
+ include LICENSE
@@ -1,23 +1,26 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: python-Levenshtein
3
- Version: 0.26.1
3
+ Version: 0.27.3
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
- Home-page: https://github.com/rapidfuzz/python-Levenshtein
6
- Author: Max Bachmann
7
- Author-email: pypi@maxbachmann.de
5
+ Author-email: Max Bachmann <pypi@maxbachmann.de>
8
6
  License: GPL-2.0-or-later
7
+ Project-URL: Homepage, https://github.com/rapidfuzz/python-Levenshtein
8
+ Project-URL: Documentation, https://rapidfuzz.github.io/Levenshtein/
9
+ Project-URL: Repository, https://github.com/rapidfuzz/python-Levenshtein.git
10
+ Project-URL: Issues, https://github.com/rapidfuzz/python-Levenshtein/issues
11
+ Project-URL: Changelog, https://github.com/rapidfuzz/python-Levenshtein/blob/main/CHANGELOG.rst
9
12
  Keywords: string,Levenshtein,comparison,edit-distance
10
13
  Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.9
12
14
  Classifier: Programming Language :: Python :: 3.10
13
15
  Classifier: Programming Language :: Python :: 3.11
14
16
  Classifier: Programming Language :: Python :: 3.12
15
17
  Classifier: Programming Language :: Python :: 3.13
16
- Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
17
- Requires-Python: >=3.9
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Requires-Python: >=3.10
18
20
  Description-Content-Type: text/markdown
19
- License-File: COPYING
20
- Requires-Dist: Levenshtein==0.26.1
21
+ License-File: LICENSE
22
+ Requires-Dist: Levenshtein==0.27.3
23
+ Dynamic: license-file
21
24
 
22
25
  # Levenshtein
23
26
 
@@ -38,7 +41,7 @@ Requires-Dist: Levenshtein==0.26.1
38
41
  <img src="https://img.shields.io/badge/-documentation-blue"
39
42
  alt="Documentation">
40
43
  </a>
41
- <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING">
44
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/LICENSE">
42
45
  <img src="https://img.shields.io/github/license/rapidfuzz/python-Levenshtein"
43
46
  alt="GitHub license">
44
47
  </a>
@@ -57,7 +60,7 @@ computation of:
57
60
  The `python-Levenshtein` package will continue to be updated alongside the new package
58
61
 
59
62
  ## Requirements
60
- * Python 3.8 or later
63
+ * Python 3.9 or later
61
64
 
62
65
  ## Installation
63
66
  ```bash
@@ -84,4 +87,4 @@ under the terms of the GNU General Public License as published by the Free
84
87
  Software Foundation; either version 2 of the License, or (at your option)
85
88
  any later version.
86
89
 
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.
90
+ See the file [LICENSE](https://github.com/rapidfuzz/python-Levenshtein/blob/main/LICENSE) for the full text of GNU General Public License version 2.
@@ -17,7 +17,7 @@
17
17
  <img src="https://img.shields.io/badge/-documentation-blue"
18
18
  alt="Documentation">
19
19
  </a>
20
- <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING">
20
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/LICENSE">
21
21
  <img src="https://img.shields.io/github/license/rapidfuzz/python-Levenshtein"
22
22
  alt="GitHub license">
23
23
  </a>
@@ -36,7 +36,7 @@ computation of:
36
36
  The `python-Levenshtein` package will continue to be updated alongside the new package
37
37
 
38
38
  ## Requirements
39
- * Python 3.8 or later
39
+ * Python 3.9 or later
40
40
 
41
41
  ## Installation
42
42
  ```bash
@@ -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/rapidfuzz/python-Levenshtein/blob/main/COPYING) for the full text of GNU General Public License version 2.
66
+ See the file [LICENSE](https://github.com/rapidfuzz/python-Levenshtein/blob/main/LICENSE) for the full text of GNU General Public License version 2.
@@ -0,0 +1,33 @@
1
+ [build-system]
2
+ requires = ["setuptools"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "python-Levenshtein"
7
+ version = "0.27.3"
8
+ dependencies = [
9
+ "Levenshtein==0.27.3"
10
+ ]
11
+ requires-python = ">= 3.10"
12
+ authors = [
13
+ {name = "Max Bachmann", email = "pypi@maxbachmann.de"},
14
+ ]
15
+ description = "Python extension for computing string edit distances and similarities."
16
+ readme = "README.md"
17
+ license = {text = "GPL-2.0-or-later"}
18
+ classifiers = [
19
+ "Programming Language :: Python :: 3",
20
+ "Programming Language :: Python :: 3.10",
21
+ "Programming Language :: Python :: 3.11",
22
+ "Programming Language :: Python :: 3.12",
23
+ "Programming Language :: Python :: 3.13",
24
+ "Programming Language :: Python :: 3.14",
25
+ ]
26
+ keywords = ["string", "Levenshtein", "comparison", "edit-distance"]
27
+
28
+ [project.urls]
29
+ Homepage = "https://github.com/rapidfuzz/python-Levenshtein"
30
+ Documentation = "https://rapidfuzz.github.io/Levenshtein/"
31
+ Repository = "https://github.com/rapidfuzz/python-Levenshtein.git"
32
+ Issues = "https://github.com/rapidfuzz/python-Levenshtein/issues"
33
+ Changelog = "https://github.com/rapidfuzz/python-Levenshtein/blob/main/CHANGELOG.rst"
@@ -1,23 +1,26 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: python-Levenshtein
3
- Version: 0.26.1
3
+ Version: 0.27.3
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
- Home-page: https://github.com/rapidfuzz/python-Levenshtein
6
- Author: Max Bachmann
7
- Author-email: pypi@maxbachmann.de
5
+ Author-email: Max Bachmann <pypi@maxbachmann.de>
8
6
  License: GPL-2.0-or-later
7
+ Project-URL: Homepage, https://github.com/rapidfuzz/python-Levenshtein
8
+ Project-URL: Documentation, https://rapidfuzz.github.io/Levenshtein/
9
+ Project-URL: Repository, https://github.com/rapidfuzz/python-Levenshtein.git
10
+ Project-URL: Issues, https://github.com/rapidfuzz/python-Levenshtein/issues
11
+ Project-URL: Changelog, https://github.com/rapidfuzz/python-Levenshtein/blob/main/CHANGELOG.rst
9
12
  Keywords: string,Levenshtein,comparison,edit-distance
10
13
  Classifier: Programming Language :: Python :: 3
11
- Classifier: Programming Language :: Python :: 3.9
12
14
  Classifier: Programming Language :: Python :: 3.10
13
15
  Classifier: Programming Language :: Python :: 3.11
14
16
  Classifier: Programming Language :: Python :: 3.12
15
17
  Classifier: Programming Language :: Python :: 3.13
16
- Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
17
- Requires-Python: >=3.9
18
+ Classifier: Programming Language :: Python :: 3.14
19
+ Requires-Python: >=3.10
18
20
  Description-Content-Type: text/markdown
19
- License-File: COPYING
20
- Requires-Dist: Levenshtein==0.26.1
21
+ License-File: LICENSE
22
+ Requires-Dist: Levenshtein==0.27.3
23
+ Dynamic: license-file
21
24
 
22
25
  # Levenshtein
23
26
 
@@ -38,7 +41,7 @@ Requires-Dist: Levenshtein==0.26.1
38
41
  <img src="https://img.shields.io/badge/-documentation-blue"
39
42
  alt="Documentation">
40
43
  </a>
41
- <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/COPYING">
44
+ <a href="https://github.com/rapidfuzz/python-Levenshtein/blob/main/LICENSE">
42
45
  <img src="https://img.shields.io/github/license/rapidfuzz/python-Levenshtein"
43
46
  alt="GitHub license">
44
47
  </a>
@@ -57,7 +60,7 @@ computation of:
57
60
  The `python-Levenshtein` package will continue to be updated alongside the new package
58
61
 
59
62
  ## Requirements
60
- * Python 3.8 or later
63
+ * Python 3.9 or later
61
64
 
62
65
  ## Installation
63
66
  ```bash
@@ -84,4 +87,4 @@ under the terms of the GNU General Public License as published by the Free
84
87
  Software Foundation; either version 2 of the License, or (at your option)
85
88
  any later version.
86
89
 
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.
90
+ See the file [LICENSE](https://github.com/rapidfuzz/python-Levenshtein/blob/main/LICENSE) for the full text of GNU General Public License version 2.
@@ -1,9 +1,8 @@
1
- COPYING
2
1
  HISTORY.md
2
+ LICENSE
3
3
  MANIFEST.in
4
4
  README.md
5
5
  pyproject.toml
6
- setup.cfg
7
6
  python_Levenshtein.egg-info/PKG-INFO
8
7
  python_Levenshtein.egg-info/SOURCES.txt
9
8
  python_Levenshtein.egg-info/dependency_links.txt
@@ -0,0 +1 @@
1
+ Levenshtein==0.27.3
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -1,3 +0,0 @@
1
- [build-system]
2
- requires = ["setuptools"]
3
- build-backend = "setuptools.build_meta"
@@ -1 +0,0 @@
1
- Levenshtein==0.26.1
@@ -1,29 +0,0 @@
1
- [metadata]
2
- name = python-Levenshtein
3
- version = 0.26.1
4
- description = Python extension for computing string edit distances and similarities.
5
- long_description = file: README.md
6
- long_description_content_type = text/markdown
7
- author = Max Bachmann
8
- author_email = pypi@maxbachmann.de
9
- url = https://github.com/rapidfuzz/python-Levenshtein
10
- license = GPL-2.0-or-later
11
- classifiers =
12
- Programming Language :: Python :: 3
13
- Programming Language :: Python :: 3.9
14
- Programming Language :: Python :: 3.10
15
- Programming Language :: Python :: 3.11
16
- Programming Language :: Python :: 3.12
17
- Programming Language :: Python :: 3.13
18
- License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
19
- keywords = string, Levenshtein, comparison, edit-distance
20
-
21
- [options]
22
- python_requires = >=3.9
23
- install_requires =
24
- Levenshtein==0.26.1
25
-
26
- [egg_info]
27
- tag_build =
28
- tag_date = 0
29
-