python-Levenshtein 0.25.0__tar.gz → 0.26.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.26.0
4
+ #### Changed
5
+ - add support for Python 3.13
6
+ - drop support for Python 3.8
7
+
8
+ ### v0.25.1
9
+ #### Fixed
10
+ - fix potentially incorrect results of `jaro_winkler` when using high prefix weights
11
+
3
12
  ### v0.25.0
4
13
  #### Changed
5
14
  - improve type hints
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-Levenshtein
3
- Version: 0.25.0
3
+ Version: 0.26.0
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
5
  Home-page: https://github.com/rapidfuzz/python-Levenshtein
6
6
  Author: Max Bachmann
@@ -8,16 +8,16 @@ 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.8
12
11
  Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
17
- Requires-Python: >=3.8
17
+ Requires-Python: >=3.9
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: COPYING
20
- Requires-Dist: Levenshtein==0.25.0
20
+ Requires-Dist: Levenshtein==0.26.0
21
21
 
22
22
  # Levenshtein
23
23
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: python-Levenshtein
3
- Version: 0.25.0
3
+ Version: 0.26.0
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
5
  Home-page: https://github.com/rapidfuzz/python-Levenshtein
6
6
  Author: Max Bachmann
@@ -8,16 +8,16 @@ 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.8
12
11
  Classifier: Programming Language :: Python :: 3.9
13
12
  Classifier: Programming Language :: Python :: 3.10
14
13
  Classifier: Programming Language :: Python :: 3.11
15
14
  Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Programming Language :: Python :: 3.13
16
16
  Classifier: License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
17
- Requires-Python: >=3.8
17
+ Requires-Python: >=3.9
18
18
  Description-Content-Type: text/markdown
19
19
  License-File: COPYING
20
- Requires-Dist: Levenshtein==0.25.0
20
+ Requires-Dist: Levenshtein==0.26.0
21
21
 
22
22
  # Levenshtein
23
23
 
@@ -0,0 +1 @@
1
+ Levenshtein==0.26.0
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = python-Levenshtein
3
- version = 0.25.0
3
+ version = 0.26.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,18 +10,18 @@ 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.8
14
13
  Programming Language :: Python :: 3.9
15
14
  Programming Language :: Python :: 3.10
16
15
  Programming Language :: Python :: 3.11
17
16
  Programming Language :: Python :: 3.12
17
+ Programming Language :: Python :: 3.13
18
18
  License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
19
19
  keywords = string, Levenshtein, comparison, edit-distance
20
20
 
21
21
  [options]
22
- python_requires = >=3.8
22
+ python_requires = >=3.9
23
23
  install_requires =
24
- Levenshtein==0.25.0
24
+ Levenshtein==0.26.0
25
25
 
26
26
  [egg_info]
27
27
  tag_build =
@@ -1 +0,0 @@
1
- Levenshtein==0.25.0