python-Levenshtein 0.27.3__tar.gz → 0.27.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,2 @@
1
1
  include README.md
2
- include HISTORY.md
3
2
  include LICENSE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-Levenshtein
3
- Version: 0.27.3
3
+ Version: 0.27.4
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
5
  Author-email: Max Bachmann <pypi@maxbachmann.de>
6
6
  License: GPL-2.0-or-later
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.14
19
19
  Requires-Python: >=3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: Levenshtein==0.27.3
22
+ Requires-Dist: Levenshtein==0.27.4
23
23
  Dynamic: license-file
24
24
 
25
25
  # Levenshtein
@@ -60,7 +60,7 @@ computation of:
60
60
  The `python-Levenshtein` package will continue to be updated alongside the new package
61
61
 
62
62
  ## Requirements
63
- * Python 3.9 or later
63
+ * Python 3.10 or later
64
64
 
65
65
  ## Installation
66
66
  ```bash
@@ -36,7 +36,7 @@ computation of:
36
36
  The `python-Levenshtein` package will continue to be updated alongside the new package
37
37
 
38
38
  ## Requirements
39
- * Python 3.9 or later
39
+ * Python 3.10 or later
40
40
 
41
41
  ## Installation
42
42
  ```bash
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "python-Levenshtein"
7
- version = "0.27.3"
7
+ version = "0.27.4"
8
8
  dependencies = [
9
- "Levenshtein==0.27.3"
9
+ "Levenshtein==0.27.4"
10
10
  ]
11
11
  requires-python = ">= 3.10"
12
12
  authors = [
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: python-Levenshtein
3
- Version: 0.27.3
3
+ Version: 0.27.4
4
4
  Summary: Python extension for computing string edit distances and similarities.
5
5
  Author-email: Max Bachmann <pypi@maxbachmann.de>
6
6
  License: GPL-2.0-or-later
@@ -19,7 +19,7 @@ Classifier: Programming Language :: Python :: 3.14
19
19
  Requires-Python: >=3.10
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
- Requires-Dist: Levenshtein==0.27.3
22
+ Requires-Dist: Levenshtein==0.27.4
23
23
  Dynamic: license-file
24
24
 
25
25
  # Levenshtein
@@ -60,7 +60,7 @@ computation of:
60
60
  The `python-Levenshtein` package will continue to be updated alongside the new package
61
61
 
62
62
  ## Requirements
63
- * Python 3.9 or later
63
+ * Python 3.10 or later
64
64
 
65
65
  ## Installation
66
66
  ```bash
@@ -1,4 +1,3 @@
1
- HISTORY.md
2
1
  LICENSE
3
2
  MANIFEST.in
4
3
  README.md
@@ -0,0 +1 @@
1
+ Levenshtein==0.27.4
@@ -1,288 +0,0 @@
1
- ## Changelog
2
-
3
- ### v0.27.3
4
- #### Added
5
- - add support for python 3.14
6
-
7
- ### v0.27.1
8
- #### Changed
9
- - fix build with ``scikit-build-core`` ``v0.11``
10
- - upgrade to `Cython==3.0.12`
11
-
12
- ### v0.26.1
13
- #### Fixed
14
- - add missing mac os wheels
15
-
16
- ### v0.26.0
17
- #### Changed
18
- - add support for Python 3.13
19
- - drop support for Python 3.8
20
-
21
- ### v0.25.1
22
- #### Fixed
23
- - fix potentially incorrect results of `jaro_winkler` when using high prefix weights
24
-
25
- ### v0.25.0
26
- #### Changed
27
- - improve type hints
28
-
29
- ### v0.24.0
30
- #### Changed
31
- - upgrade ``rapidfuzz-cpp`` to ``v3.0.0``
32
- - drop support for Python 3.7
33
-
34
- ### v0.23.0
35
- #### Changed
36
- - added keyword argument `pad` to Hamming distance. This controls whether sequences of different
37
- length should be padded or lead to a `ValueError`
38
- - upgrade to `Cython==3.0.3`
39
-
40
- ### v0.22.0
41
- #### Changed
42
- - add support for Python 3.12
43
- - drop support for Python 3.6
44
-
45
- #### Added
46
- - add wheels for windows arm64
47
-
48
- ### v0.21.1
49
- #### Changed
50
- - upgrade ``rapidfuzz-cpp`` to ``v2.0.0``
51
-
52
- ### v0.21.0
53
- #### Changed
54
- - relax dependency requirement on ``rapidfuzz``
55
-
56
- ### v0.20.9
57
- #### Fixed
58
- - fix function signature of `get_requires_for_build_wheel`
59
-
60
- ### v0.20.8
61
- #### Fixed
62
- - type hints for `editops`/`opcoded`/`matching_blocks` did not allow any
63
- hashable sequence
64
-
65
- ### v0.20.7
66
- #### Fixed
67
- - type hints did not get installed
68
-
69
- ### v0.20.6
70
- #### Fixed
71
- - fix incorrect result normalization in `setratio` and `seqratio`
72
-
73
- ### v0.20.5
74
- #### Fixed
75
- - fix support for cmake versions below 3.17
76
- - fix version requirement for `rapidfuzz-cpp` when building against a previously installed version
77
-
78
- ### v0.20.4
79
- #### Changed
80
- - modernize cmake build to fix most conda-forge builds
81
-
82
- ### v0.20.3
83
- #### Changed
84
- - Added support for Python 3.11
85
-
86
- ### v0.20.2
87
- #### Fixed
88
- - fix matching_blocks conversion for empty editops
89
-
90
- #### Changed
91
- - added in-tree build backend to install cmake and ninja only when it is not installed yet and only when wheels are available
92
-
93
- ### v0.20.1
94
- #### Fixed
95
- - fix broken matching_blocks conversion
96
-
97
- ### v0.20.0
98
- #### Changed
99
- - use `matching_blocks`/`apply`/`remove_subsequence`/`inverse` implementation from RapidFuzz
100
-
101
- #### Fixed
102
- - stop adding data to wheels
103
- - fix segmentation fault on some invalid editop sequences in subtract_edit
104
- - detect duplicated entries in editops validation
105
-
106
- ### v0.19.3
107
- #### Added
108
- - add musllinux wheels
109
-
110
- ### v0.19.2
111
- #### Added
112
- - add missing type hints
113
-
114
- ### v0.19.1
115
- #### Added
116
- - Add type hints
117
-
118
- ### v0.19.0
119
- #### Changed
120
- - implement all Python wrappers mostly with cython
121
- - replace usage of deprecated Python APIs
122
-
123
- #### Fixed
124
- - fix behavior of median and median_improve
125
-
126
- ### v0.18.2
127
- #### Changed
128
- - Allow installation from system installed versions of `rapidfuzz-cpp`
129
-
130
- ### v0.18.1
131
- #### Fixed
132
- - Indel.normalized_similarity was broken in RapidFuzz v2.0.0 (see #20)
133
-
134
- ### v0.18.0
135
- #### Fixed
136
- * Fixed memory leak in error path of setratio
137
-
138
- * Fixed out of bound reads due to uninitialized variable in median
139
- * e.g. quickmedian(["test", "teste"], [0, 0]) caused out of bound reads
140
-
141
- #### Changed
142
- * Use a faster editops implementation provided by RapidFuzz
143
- * Reduce code duplication
144
- * reuse implementations from rapidfuzz-cpp
145
- * Transition to scikit-build
146
-
147
- ### v0.17.0
148
- * Removed support for Python 3.5
149
-
150
- ### v0.16.1
151
- * Add support for RapidFuzz v1.9.*
152
-
153
- ### v0.16.0
154
- * Add support for Python 3.10
155
-
156
- ### v0.15.0
157
- * Update SequenceMatcher interface to support the autojunk parameter
158
-
159
- ### v0.14.0
160
- * Drop Python 2 support
161
- * Fixed free of non heap object due caused by zero offset on a heap object
162
- * Fixed warnings about missing type conversions
163
- * Fix segmentation fault in subtract_edit when incorrect input types are used
164
- * Fixed unchecked memory allocations
165
- * Implement distance/ratio/hamming/jaro/jaro_winkler
166
- using rapidfuzz instead of providing a own implementation
167
- * Implement Wrapper for inverse/editops/opcodes/matching_blocks/subtract_edit/apply_edit
168
- using Cython to simplify support for new Python versions
169
-
170
- ### v0.13.0
171
- * Maintainership passed to Max Bachmann
172
- * use faster bitparallel implementations for distance and ratio
173
- * avoid string copies in distance, ratio and hamming
174
- * Fix usage of deprecated Unicode APIs in distance, ratio and hamming
175
- * Fixed incorrect window size inside Jaro and Jaro-Winkler implementation
176
- * Fixed incorrect exception messages
177
- * Removed unused functions and compiler specific hacks
178
- * Split the Python and C implementations to simplify building of
179
- the C library
180
- * Fixed multiple bugs which prevented the use as C library, since some functions
181
- only got defined when compiling for Python
182
- * Build and deliver python wheels for the library
183
- * Fixed incorrect allocation size in lev_editops_matching_blocks and
184
- lev_opcodes_matching_blocks
185
-
186
- ### v0.12.1
187
- * Fixed handling of numerous possible wraparounds in calculating the size
188
- of memory allocations; incorrect handling of which could cause denial
189
- of service or even possible remote code execution in previous versions
190
- of the library.
191
-
192
- ### v0.12.0
193
- * Fixed a bug in StringMatcher.StringMatcher.get_matching_blocks /
194
- extract_editops for Python 3; now allow only `str` editops on
195
- both Python 2 and Python 3, for simpler and working code.
196
- * Added documentation in the source distribution and in GIT
197
- * Fixed the package layout: renamed the .so/.dll to _levenshtein,
198
- and made it reside inside a package, along with the StringMatcher
199
- class.
200
- * Fixed spelling errors.
201
-
202
- ### v0.11.2
203
- * Fixed a bug in setup.py: installation would fail on Python 3 if the locale
204
- did not specify UTF-8 charset (Felix Yan).
205
-
206
- * Added COPYING, StringMatcher.py, gendoc.sh and NEWS in MANIFEST.in, as they
207
- were missing from source distributions.
208
-
209
- ### v0.11.1
210
- * Added Levenshtein.h to MANIFEST.in
211
-
212
- ### v0.11.0
213
- * Python 3 support, maintainership passed to Antti Haapala
214
-
215
- ### v0.10.2
216
- * Made python-Lehvenstein Git compatible and use setuptools for PyPi upload
217
- * Created HISTORY.txt and made README reST compatible
218
-
219
- ### v0.10.1
220
- * apply_edit() broken for Unicodes was fixed (thanks to Radovan Garabik)
221
- * subtract_edit() function was added
222
-
223
- ### v0.10.0
224
- * Hamming distance, Jaro similarity metric and Jaro-Winkler similarity
225
- metric were added
226
- * ValueErrors raised on wrong argument types were fixed to TypeErrors
227
-
228
- ### v0.9.0
229
- * a poor-but-fast generalized median method quickmedian() was added
230
- * some auxiliary functions added to the C api (lev_set_median_index,
231
- lev_editops_normalize, ...)
232
-
233
- ### v0.8.2
234
- * fixed missing `static' in the method list
235
-
236
- ### v0.8.1
237
- * some compilation problems with non-gcc were fixed
238
-
239
- v0.8.0
240
- * median_improve(), a generalized median improving function, was added
241
- * an arbitrary length limitation imposed on greedy median() result was
242
- removed
243
- * out of memory should be handled more gracefully (on systems w/o memory
244
- overcomitting)
245
- * the documentation now passes doctest
246
-
247
- ### v0.7.0
248
- * fixed greedy median() for Unicode characters > U+FFFF, it's now usable
249
- with whatever integer type wchar_t happens to be
250
- * added missing MANIFEST
251
- * renamed exported C functions, all public names now have lev_, LEV_ or
252
- Lev prefix; defined lev_byte, lev_wchar, and otherwise santinized
253
- the (still unstable) C interface
254
- * added edit-ops group of functions, with two interfaces: native, useful
255
- for string averaging, and difflib-like for interoperability
256
- * added an example SequenceMatcher-like class StringMatcher
257
-
258
- ### v0.6.0
259
- * a segfault in seqratio()/setratio() on invalid input has been fixed
260
- to an exception
261
- * optimized ratio() and distance() (about 20%)
262
- * Levenshtein.h header file was added to make it easier to actually use
263
- it as a C library
264
-
265
- ### v0.5.0
266
- * a segfault in setratio() was fixed
267
- * median() handles all empty strings situation more gracefully
268
-
269
- ### v0.4.0
270
- * new functions seqratio() and setratio() computing similarity between
271
- string sequences and sets
272
- * Levenshtein optimizations (affects all routines except median())
273
- * all Sequence objects are accepted, not just Lists
274
-
275
- ### v0.3.0
276
- * setmedian() finding set median was added
277
- * median() initial overhead for Unicodes was reduced
278
-
279
- ### v0.2.0
280
- * ratio() and distance() now accept both Strings and Unicodes
281
- * removed uratio() and udistance()
282
- * Levenshtein.c is now compilable as a C library (with -DNO_PYTHON)
283
- * a median() function finding approximate weighted median of a string
284
- set was added
285
-
286
- ### v0.1.0
287
- * Inital release
288
-
@@ -1 +0,0 @@
1
- Levenshtein==0.27.3