Skip to content

Commit

Permalink
update Levenshtein version
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Sep 19, 2024
1 parent bb6eff3 commit abd121d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## Changelog

### v0.26.0
#### Changed
- add support for Python 3.13
- drop support for Python 3.8

### v0.25.1
#### Fixed
- fix potentially incorrect results of `jaro_winkler` when using high prefix weights
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[metadata]
name = python-Levenshtein
version = 0.25.1
version = 0.26.0
description = Python extension for computing string edit distances and similarities.
long_description = file: README.md
long_description_content_type = text/markdown
Expand All @@ -10,15 +10,15 @@ url = https://github.com/rapidfuzz/python-Levenshtein
license = GPL-2.0-or-later
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Programming Language :: Python :: 3.12
Programming Language :: Python :: 3.13
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
keywords = string, Levenshtein, comparison, edit-distance

[options]
python_requires = >=3.8
python_requires = >=3.9
install_requires =
Levenshtein==0.25.1
Levenshtein==0.26.0

0 comments on commit abd121d

Please sign in to comment.