summaryrefslogtreecommitdiff
path: root/databases/py-tiledb/files/patch-setup.py
blob: b9d2e810a924364fa3d14811dea1408b53772561 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--- setup.py.orig	2022-06-24 21:27:10 UTC
+++ setup.py
@@ -534,12 +534,6 @@ def setup_requires():
         req = parse_requirements("requirements_dev.txt")
         req = list(filter(lambda r: not r.startswith("-r"), req))
 
-    req_cmake = list(filter(lambda r: "cmake" in r, req))[0]
-
-    # Add cmake requirement if libtiledb is not found and cmake is not available.
-    if not libtiledb_exists(LIB_DIRS) and not cmake_available():
-        req.append(req_cmake)
-
     return req