Skip to content

Commit 79c34b0

Browse files
authored
release 0.24.0
1 parent 7cc9147 commit 79c34b0

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
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.24.0
4+
#### Changed
5+
- upgrade ``rapidfuzz-cpp`` to ``v3.0.0``
6+
- drop support for Python 3.7
7+
38
### v0.23.0
49
#### Changed
510
- added keyword argument `pad` to Hamming distance. This controls whether sequences of different

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ computation of:
3636
The `python-Levenshtein` package will continue to be updated alongside the new package
3737

3838
## Requirements
39-
* Python 3.7 or later
39+
* Python 3.8 or later
4040

4141
## Installation
4242
```bash

setup.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = python-Levenshtein
3-
version = 0.23.0
3+
version = 0.24.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,7 +10,6 @@ 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.7
1413
Programming Language :: Python :: 3.8
1514
Programming Language :: Python :: 3.9
1615
Programming Language :: Python :: 3.10
@@ -20,6 +19,6 @@ classifiers =
2019
keywords = string, Levenshtein, comparison, edit-distance
2120

2221
[options]
23-
python_requires = >=3.7
22+
python_requires = >=3.8
2423
install_requires =
25-
Levenshtein==0.23.0
24+
Levenshtein==0.24.0

0 commit comments

Comments
 (0)