forked from pool/python-rapidfuzz
Compare commits
9 Commits
| Author | SHA256 | Date | |
|---|---|---|---|
| 17ed8263d6 | |||
| 2c2bf1de7c | |||
| 5827c112d5 | |||
| 0bb168dae1 | |||
| 1c5c245f97 | |||
| 0c7011b3eb | |||
| 1cac91a866 | |||
| b24d753038 | |||
| e2d0a03492 |
@@ -1,3 +1,71 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jan 27 21:32:37 UTC 2026 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.14.3:
|
||||||
|
* add missing pypy and freethreaded linux wheels
|
||||||
|
* drop s390x and ppc64le wheels since they are virtually unused
|
||||||
|
and require extremly long to build under emulation
|
||||||
|
* upgrade to Cython==3.1.6
|
||||||
|
* enable free threading
|
||||||
|
* Fully disable line tracing in release builds
|
||||||
|
* upgrade to rapidfuzz-cpp==3.3.3
|
||||||
|
* add support for freethreaded Python
|
||||||
|
* add python 3.14 wheels
|
||||||
|
* dropped support for Python3.9
|
||||||
|
* drop 32 bit linux wheels
|
||||||
|
* remove unused hook-dirs from pyinstaller config to fix a
|
||||||
|
warning
|
||||||
|
* fixed WRatio for a length ratio of exactly 8.0
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Jul 15 04:49:52 UTC 2025 - Steve Kowalik <steven.kowalik@suse.com>
|
||||||
|
|
||||||
|
- Update to 3.13.0:
|
||||||
|
* add support for arrays of type 'w'
|
||||||
|
* add support for any DTypeLike as dtype in ``cdist`` and ``cpdist``
|
||||||
|
* upgrade to ``Cython==3.0.12``
|
||||||
|
* generate code for fallback imports to be better parseable for tools
|
||||||
|
bundling Python applications into a single binary
|
||||||
|
* added support for taskflow 3.9.0
|
||||||
|
* improve calculation of min score inside partial_ratio so it can skip
|
||||||
|
more alignments
|
||||||
|
* fix compilation on clang-19
|
||||||
|
* fix incorrect results in simd optimized implementation of Levenshtein
|
||||||
|
and OSA on 32bit targets
|
||||||
|
* drop support for Python 3.8
|
||||||
|
* switch build system to ``scikit-build-core``
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sun Aug 18 17:20:38 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.9.6:
|
||||||
|
* upgrade to Cython==3.0.11
|
||||||
|
* add python 3.13 wheels
|
||||||
|
* include simd binaries in pyinstaller builds
|
||||||
|
* fix builds with setuptools 72 by upgrading scikit-build
|
||||||
|
|
||||||
|
-------------------------------------------------------------------
|
||||||
|
Sat Jul 6 18:31:21 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
- update to 3.9.4:
|
||||||
|
* fix bug in Levenshtein.editops and Levenshtein.opcodes which
|
||||||
|
could lead to incorrect results and crashes for some inputs
|
||||||
|
* fix None handling for queries in process.cdist for scorers
|
||||||
|
not supporting SIMD
|
||||||
|
* fix supported versions of taskflow in cmake to be in the
|
||||||
|
range v3.3 - v3.7
|
||||||
|
* disable AVX2 on MacOS since it did lead to illegal
|
||||||
|
instructions being generated
|
||||||
|
* significantly improve type hints for the library
|
||||||
|
* fix cmake version parsing
|
||||||
|
* use the correct version of rapidfuzz-cpp when building
|
||||||
|
against a system installed version
|
||||||
|
* added process.cpdist which allows pairwise comparison of two
|
||||||
|
collection of inputs
|
||||||
|
* fix some minor errors in the type hints
|
||||||
|
* fix potentially incorrect results of JaroWinkler when using
|
||||||
|
high prefix weights
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Apr 6 12:11:45 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
Sat Apr 6 12:11:45 UTC 2024 - Dirk Müller <dmueller@suse.com>
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
#
|
#
|
||||||
# spec file for package python-rapidfuzz
|
# spec file for package python-rapidfuzz
|
||||||
#
|
#
|
||||||
# Copyright (c) 2024 SUSE LLC
|
# Copyright (c) 2026 SUSE LLC and contributors
|
||||||
#
|
#
|
||||||
# All modifications and additions to the file contributed by third parties
|
# All modifications and additions to the file contributed by third parties
|
||||||
# remain the property of their copyright owners, unless otherwise agreed
|
# remain the property of their copyright owners, unless otherwise agreed
|
||||||
@@ -18,21 +18,19 @@
|
|||||||
|
|
||||||
%{?sle15_python_module_pythons}
|
%{?sle15_python_module_pythons}
|
||||||
Name: python-rapidfuzz
|
Name: python-rapidfuzz
|
||||||
Version: 3.7.0
|
Version: 3.14.3
|
||||||
Release: 0
|
Release: 0
|
||||||
Summary: Rapid fuzzy string matching
|
Summary: Rapid fuzzy string matching
|
||||||
License: MIT
|
License: MIT
|
||||||
URL: https://github.com/maxbachmann/RapidFuzz
|
URL: https://github.com/maxbachmann/RapidFuzz
|
||||||
Source: https://files.pythonhosted.org/packages/source/r/rapidfuzz/rapidfuzz-%{version}.tar.gz
|
Source: https://files.pythonhosted.org/packages/source/r/rapidfuzz/rapidfuzz-%{version}.tar.gz
|
||||||
BuildRequires: %{python_module Cython}
|
BuildRequires: %{python_module Cython >= 3.1.4}
|
||||||
BuildRequires: %{python_module devel >= 3.7}
|
BuildRequires: %{python_module devel >= 3.10}
|
||||||
BuildRequires: %{python_module hypothesis}
|
BuildRequires: %{python_module hypothesis}
|
||||||
BuildRequires: %{python_module numpy}
|
BuildRequires: %{python_module numpy}
|
||||||
BuildRequires: %{python_module pip}
|
BuildRequires: %{python_module pip}
|
||||||
BuildRequires: %{python_module pytest}
|
BuildRequires: %{python_module pytest}
|
||||||
BuildRequires: %{python_module scikit-build}
|
BuildRequires: %{python_module scikit-build-core >= 0.11}
|
||||||
BuildRequires: %{python_module setuptools_scm}
|
|
||||||
BuildRequires: %{python_module setuptools}
|
|
||||||
BuildRequires: fdupes
|
BuildRequires: fdupes
|
||||||
BuildRequires: ninja
|
BuildRequires: ninja
|
||||||
BuildRequires: python-rpm-macros
|
BuildRequires: python-rpm-macros
|
||||||
|
|||||||
3
rapidfuzz-3.14.3.tar.gz
Normal file
3
rapidfuzz-3.14.3.tar.gz
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:2491937177868bc4b1e469087601d53f925e8d270ccc21e07404b4b5814b7b5f
|
||||||
|
size 57863900
|
||||||
@@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:620df112c39c6d27316dc1e22046dc0382d6d91fd60d7c51bd41ca0333d867e9
|
|
||||||
size 1569549
|
|
||||||
Reference in New Issue
Block a user