Skip to content

Commit 5819055

Browse files
committed
add support for taskflow 3.9.0
1 parent 9163ed0 commit 5819055

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

CHANGELOG.rst

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,25 +5,29 @@ Changelog
55
^^^^^^^^^^^^^^^^^^^^^
66
Changed
77
~~~~~~~~~~~
8-
- generate code for fallback imports to be better parseable for tools bundling Python
8+
* generate code for fallback imports to be better parseable for tools bundling Python
99
applications into a single binary (examples are cx-freeze and pyinstaller)
1010

11+
Added
12+
~~~~~
13+
* added support for taskflow 3.9.0
14+
1115
[3.11.0] - 2024-12-17
1216
^^^^^^^^^^^^^^^^^^^^^
1317
Performance
1418
~~~~~~~~~~~
15-
- improve calculation of min score inside partial_ratio so it can skip more alignments
19+
* improve calculation of min score inside partial_ratio so it can skip more alignments
1620

1721
Added
1822
~~~~~
19-
- added build support for emscripten
23+
* added build support for emscripten
2024

2125
[3.10.1] - 2024-10-24
2226
^^^^^^^^^^^^^^^^^^^^^
2327
Fixed
2428
~~~~~
25-
- fix compilation on clang-19
26-
- fix incorrect results in simd optimized implementation of Levenshtein and OSA on 32bit targets
29+
* fix compilation on clang-19
30+
* fix incorrect results in simd optimized implementation of Levenshtein and OSA on 32bit targets
2731

2832
Added
2933
~~~~~
@@ -33,8 +37,8 @@ Added
3337
^^^^^^^^^^^^^^^^^^^^^
3438
Fixed
3539
~~~~~
36-
- drop support for Python 3.8
37-
- switch build system to ``scikit-build-core``
40+
* drop support for Python 3.8
41+
* switch build system to ``scikit-build-core``
3842

3943
[3.9.7] - 2024-09-02
4044
^^^^^^^^^^^^^^^^^^^^
@@ -105,8 +109,8 @@ Added
105109

106110
Fixed
107111
~~~~~
108-
- fix some minor errors in the type hints
109-
- fix potentially incorrect results of JaroWinkler when using high prefix weights
112+
* fix some minor errors in the type hints
113+
* fix potentially incorrect results of JaroWinkler when using high prefix weights
110114

111115
[3.7.0] - 2024-03-21
112116
^^^^^^^^^^^^^^^^^^^^

CMakeLists.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,9 @@ check_cpu_arch_x86(RAPIDFUZZ_ARCH_X86)
8282

8383
set(RF_BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
8484

85-
find_package(Taskflow 3.8.0 QUIET)
85+
find_package(Taskflow 3.9.0 QUIET)
86+
if(NOT Taskflow_FOUND)
87+
find_package(Taskflow 3.8.0 QUIET)
8688
if(NOT Taskflow_FOUND)
8789
find_package(Taskflow 3.7.0 QUIET)
8890
endif()

extern/taskflow

Submodule taskflow updated 409 files

0 commit comments

Comments
 (0)