Skip to content

Commit 23fffc2

Browse files
authored
add support for python 3.14
1 parent e46eaff commit 23fffc2

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

HISTORY.md

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

3+
### v0.27.3
4+
#### Added
5+
- add support for python 3.14
6+
37
### v0.27.1
48
#### Changed
59
- fix build with ``scikit-build-core`` ``v0.11``

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "python-Levenshtein"
7-
version = "0.27.1"
7+
version = "0.27.3"
88
dependencies = [
9-
"Levenshtein==0.27.1"
9+
"Levenshtein==0.27.3"
1010
]
11-
requires-python = ">= 3.9"
11+
requires-python = ">= 3.10"
1212
authors = [
1313
{name = "Max Bachmann", email = "[email protected]"},
1414
]
@@ -17,11 +17,11 @@ readme = "README.md"
1717
license = {text = "GPL-2.0-or-later"}
1818
classifiers = [
1919
"Programming Language :: Python :: 3",
20-
"Programming Language :: Python :: 3.9",
2120
"Programming Language :: Python :: 3.10",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
2423
"Programming Language :: Python :: 3.13",
24+
"Programming Language :: Python :: 3.14",
2525
]
2626
keywords = ["string", "Levenshtein", "comparison", "edit-distance"]
2727

0 commit comments

Comments
 (0)