From e5162c92778555aee6e56c66b1ee718e70632db8 Mon Sep 17 00:00:00 2001 From: John Blischak Date: Wed, 11 Dec 2024 16:05:55 -0500 Subject: [PATCH] Install latest tiledb from tiledb/label/nightlies (support mamba 2) (#157) --- 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 fa9c5a3..ad0abee 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 *.%s" % (date) + updated["requirements"]["host"][i] = "tiledb" with open(recipe, "w") as f: yaml.dump(updated, f)