Skip to content

Commit e298398

Browse files
authored
fix supported versions of taskflow in cmake to be in the range v3.3 - v3.7
1 parent cb8a1b1 commit e298398

File tree

4 files changed

+23
-4
lines changed

4 files changed

+23
-4
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,13 @@
11
Changelog
22
---------
33

4+
[3.9.2] - 2024-05-28
5+
^^^^^^^^^^^^^^^^^^^^
6+
Fixed
7+
~~~~~
8+
* fix supported versions of taskflow in cmake to be in the range v3.3 - v3.7
9+
10+
411
[3.9.1] - 2024-05-19
512
^^^^^^^^^^^^^^^^^^^^
613
Fixed

CMakeLists.txt

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
cmake_minimum_required(VERSION 3.12...3.24)
1+
cmake_minimum_required(VERSION 3.12...3.29)
22

33
set(CMAKE_INTERPROCEDURAL_OPTIMIZATION TRUE)
44
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
@@ -73,7 +73,19 @@ check_cpu_arch_x86(RAPIDFUZZ_ARCH_X86)
7373

7474
set(RF_BASE_DIR ${CMAKE_CURRENT_SOURCE_DIR}/src)
7575

76-
find_package(Taskflow 3.3.0 QUIET)
76+
find_package(Taskflow 3.7.0 QUIET)
77+
if(NOT Taskflow_FOUND)
78+
find_package(Taskflow 3.6.0 QUIET)
79+
endif()
80+
if(NOT Taskflow_FOUND)
81+
find_package(Taskflow 3.5.0 QUIET)
82+
endif()
83+
if(NOT Taskflow_FOUND)
84+
find_package(Taskflow 3.4.0 QUIET)
85+
endif()
86+
if(NOT Taskflow_FOUND)
87+
find_package(Taskflow 3.3.0 QUIET)
88+
endif()
7789
if(Taskflow_FOUND)
7890
message(STATUS "Using system supplied version of Taskflow")
7991
else()

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def show_message(*lines):
1515

1616
setup_args = {
1717
"name": "rapidfuzz",
18-
"version": "3.9.1",
18+
"version": "3.9.2",
1919
"extras_require": {"full": ["numpy"]},
2020
"url": "https://github.com/rapidfuzz/RapidFuzz",
2121
"author": "Max Bachmann",

src/rapidfuzz/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
__author__: str = "Max Bachmann"
88
__license__: str = "MIT"
9-
__version__: str = "3.9.1"
9+
__version__: str = "3.9.2"
1010

1111
from rapidfuzz import distance, fuzz, process, utils
1212

0 commit comments

Comments
 (0)