From abd121defa4d40aa1d3d65b5d768067c5ac602ed Mon Sep 17 00:00:00 2001 From: Max Bachmann Date: Thu, 19 Sep 2024 23:10:52 +0200 Subject: [PATCH] update Levenshtein version --- HISTORY.md | 5 +++++ setup.cfg | 8 ++++---- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index a0d70e4..87415f8 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -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 diff --git a/setup.cfg b/setup.cfg index ded1188..05e9037 100644 --- a/setup.cfg +++ b/setup.cfg @@ -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 @@ -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