From 8f5a7fc543674d58639d62c7e12a8881f0d61061 Mon Sep 17 00:00:00 2001 From: Paris Morgan Date: Tue, 2 Jul 2024 13:14:06 +0200 Subject: [PATCH] Update to TileDB Core 2.24.1 (#431) --- apis/python/requirements-py.txt | 2 +- pyproject.toml | 2 +- src/cmake/Modules/FindTileDB_EP.cmake | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/apis/python/requirements-py.txt b/apis/python/requirements-py.txt index e65d9a4f1..9147cca32 100644 --- a/apis/python/requirements-py.txt +++ b/apis/python/requirements-py.txt @@ -1,4 +1,4 @@ numpy==1.24.3 tiledb-cloud==0.10.24 -tiledb==0.30.0 +tiledb==0.30.1 scikit-learn==1.3.2 diff --git a/pyproject.toml b/pyproject.toml index 1bd7b134d..41a9c6180 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ dependencies = [ "tiledb-cloud>=0.11", - "tiledb>=0.30.0", + "tiledb>=0.30.1", "typing-extensions", # for tiledb-cloud indirect, x-ref https://github.com/TileDB-Inc/TileDB-Cloud-Py/pull/428 "scikit-learn", "numpy<2.0.0", diff --git a/src/cmake/Modules/FindTileDB_EP.cmake b/src/cmake/Modules/FindTileDB_EP.cmake index fed51c189..d0e1199a9 100644 --- a/src/cmake/Modules/FindTileDB_EP.cmake +++ b/src/cmake/Modules/FindTileDB_EP.cmake @@ -54,13 +54,13 @@ else() # Try to download prebuilt artifacts unless the user specifies to build from source if(DOWNLOAD_TILEDB_PREBUILT) fetch_prebuilt_tiledb( - VERSION 2.24.0 - RELLIST_HASH SHA256=e5aa7e6d747bb956730e438d0b29c90096226d4a553c26c5cb9161680f1d489c + VERSION 2.24.1 + RELLIST_HASH SHA256=76d4deebd42afd059729fac7f13b172e1187ab43b8e3d2404f0328a47221a231 ) else() # Build from source fetch_source_tiledb( - VERSION 2.24.0 - RELLIST_HASH SHA256=e5aa7e6d747bb956730e438d0b29c90096226d4a553c26c5cb9161680f1d489c + VERSION 2.24.1 + RELLIST_HASH SHA256=76d4deebd42afd059729fac7f13b172e1187ab43b8e3d2404f0328a47221a231 ) endif()