Skip to content

Commit de2b1d5

Browse files
authored
release 0.22.0
1 parent bb33a8f commit de2b1d5

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

HISTORY.md

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

3+
### v0.22.0
4+
#### Changed
5+
- add support for Python 3.12
6+
- drop support for Python 3.6
7+
8+
#### Added
9+
- add wheels for windows arm64
10+
311
### v0.21.1
412
#### Changed
513
- upgrade ``rapidfuzz-cpp`` to ``v2.0.0``

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.6 or later
39+
* Python 3.7 or later
4040

4141
## Installation
4242
```bash

setup.cfg

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = python-Levenshtein
3-
version = 0.21.1
3+
version = 0.22.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,16 +10,16 @@ url = https://github.com/maxbachmann/python-Levenshtein
1010
license = GPL-2.0-or-later
1111
classifiers =
1212
Programming Language :: Python :: 3
13-
Programming Language :: Python :: 3.6
1413
Programming Language :: Python :: 3.7
1514
Programming Language :: Python :: 3.8
1615
Programming Language :: Python :: 3.9
1716
Programming Language :: Python :: 3.10
1817
Programming Language :: Python :: 3.11
18+
Programming Language :: Python :: 3.12
1919
License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)
2020
keywords = string, Levenshtein, comparison, edit-distance
2121

2222
[options]
23-
python_requires = >=3.6
23+
python_requires = >=3.7
2424
install_requires =
25-
Levenshtein==0.21.1
25+
Levenshtein==0.22.0

0 commit comments

Comments
 (0)