Skip to content

Commit

Permalink
release 0.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann authored Jan 31, 2024
1 parent 7cc9147 commit 79c34b0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 5 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.24.0
#### Changed
- upgrade ``rapidfuzz-cpp`` to ``v3.0.0``
- drop support for Python 3.7

### v0.23.0
#### Changed
- added keyword argument `pad` to Hamming distance. This controls whether sequences of different
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ computation of:
The `python-Levenshtein` package will continue to be updated alongside the new package

## Requirements
* Python 3.7 or later
* Python 3.8 or later

## Installation
```bash
Expand Down
7 changes: 3 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.23.0
version = 0.24.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,7 +10,6 @@ url = https://github.com/rapidfuzz/python-Levenshtein
license = GPL-2.0-or-later
classifiers =
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Expand All @@ -20,6 +19,6 @@ classifiers =
keywords = string, Levenshtein, comparison, edit-distance

[options]
python_requires = >=3.7
python_requires = >=3.8
install_requires =
Levenshtein==0.23.0
Levenshtein==0.24.0

0 comments on commit 79c34b0

Please sign in to comment.