Skip to content

Commit

Permalink
add support for taskflow 3.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
maxbachmann committed Jan 16, 2025
1 parent 39ab80e commit a9fc245
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 11 deletions.
22 changes: 13 additions & 9 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,25 +5,29 @@ Changelog
^^^^^^^^^^^^^^^^^^^^^
Changed
~~~~~~~~~~~
- generate code for fallback imports to be better parseable for tools bundling Python
* generate code for fallback imports to be better parseable for tools bundling Python
applications into a single binary (examples are cx-freeze and pyinstaller)

Added
~~~~~
* added support for taskflow 3.9.0

[3.11.0] - 2024-12-17
^^^^^^^^^^^^^^^^^^^^^
Performance
~~~~~~~~~~~
- improve calculation of min score inside partial_ratio so it can skip more alignments
* improve calculation of min score inside partial_ratio so it can skip more alignments

Added
~~~~~
- added build support for emscripten
* added build support for emscripten

[3.10.1] - 2024-10-24
^^^^^^^^^^^^^^^^^^^^^
Fixed
~~~~~
- fix compilation on clang-19
- fix incorrect results in simd optimized implementation of Levenshtein and OSA on 32bit targets
* fix compilation on clang-19
* fix incorrect results in simd optimized implementation of Levenshtein and OSA on 32bit targets

Added
~~~~~
Expand All @@ -33,8 +37,8 @@ Added
^^^^^^^^^^^^^^^^^^^^^
Fixed
~~~~~
- drop support for Python 3.8
- switch build system to ``scikit-build-core``
* drop support for Python 3.8
* switch build system to ``scikit-build-core``

[3.9.7] - 2024-09-02
^^^^^^^^^^^^^^^^^^^^
Expand Down Expand Up @@ -105,8 +109,8 @@ Added

Fixed
~~~~~
- fix some minor errors in the type hints
- fix potentially incorrect results of JaroWinkler when using high prefix weights
* fix some minor errors in the type hints
* fix potentially incorrect results of JaroWinkler when using high prefix weights

[3.7.0] - 2024-03-21
^^^^^^^^^^^^^^^^^^^^
Expand Down
5 changes: 4 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,10 @@ check_cpu_arch_x86(RAPIDFUZZ_ARCH_X86)

set(RF_BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)

find_package(Taskflow 3.8.0 QUIET)
find_package(Taskflow 3.9.0 QUIET)
if(NOT Taskflow_FOUND)
find_package(Taskflow 3.8.0 QUIET)
endif()
if(NOT Taskflow_FOUND)
find_package(Taskflow 3.7.0 QUIET)
endif()
Expand Down
2 changes: 1 addition & 1 deletion extern/taskflow
Submodule taskflow updated 409 files

0 comments on commit a9fc245

Please sign in to comment.