From a688f1b9a54fd1e98d41a083baa8ec5a5def9f71 Mon Sep 17 00:00:00 2001 From: John Blischak Date: Fri, 13 Dec 2024 11:46:55 -0500 Subject: [PATCH] Specify latest tiledb using the pin 2.* (#158) --- scripts/tiledb-py/update-recipe.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/tiledb-py/update-recipe.py b/scripts/tiledb-py/update-recipe.py index ad0abee..df2a9d9 100644 --- a/scripts/tiledb-py/update-recipe.py +++ b/scripts/tiledb-py/update-recipe.py @@ -59,7 +59,7 @@ # Pin tiledb by the date for i in range(len(updated["requirements"]["host"])): if updated["requirements"]["host"][i].startswith("tiledb"): - updated["requirements"]["host"][i] = "tiledb" + updated["requirements"]["host"][i] = "tiledb 2.*" with open(recipe, "w") as f: yaml.dump(updated, f)