Skip to content

Commit abd121d

Browse files
committed
update Levenshtein version
1 parent bb6eff3 commit abd121d

File tree

2 files changed

+9
-4
lines changed

2 files changed

+9
-4
lines changed

HISTORY.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## Changelog
22

3+
### v0.26.0
4+
#### Changed
5+
- add support for Python 3.13
6+
- drop support for Python 3.8
7+
38
### v0.25.1
49
#### Fixed
510
- fix potentially incorrect results of `jaro_winkler` when using high prefix weights

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = python-Levenshtein
3-
version = 0.25.1
3+
version = 0.26.0
44
description = Python extension for computing string edit distances and similarities.
55
long_description = file: README.md
66
long_description_content_type = text/markdown
@@ -10,15 +10,15 @@ url = https://github.com/rapidfuzz/python-Levenshtein
1010
license = GPL-2.0-or-later
1111
classifiers =
1212
Programming Language :: Python :: 3
13-
Programming Language :: Python :: 3.8
1413
Programming Language :: Python :: 3.9
1514
Programming Language :: Python :: 3.10
1615
Programming Language :: Python :: 3.11
1716
Programming Language :: Python :: 3.12
17+
Programming Language :: Python :: 3.13
1818
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
1919
keywords = string, Levenshtein, comparison, edit-distance
2020

2121
[options]
22-
python_requires = >=3.8
22+
python_requires = >=3.9
2323
install_requires =
24-
Levenshtein==0.25.1
24+
Levenshtein==0.26.0

0 commit comments

Comments
 (0)