From d821ebcba5dc4887727bb0edabad7403feb00c3f Mon Sep 17 00:00:00 2001 From: Paris Morgan Date: Wed, 17 Apr 2024 19:51:35 +0200 Subject: [PATCH] Increment TileDB core version to 2.22.0 (#335) Increment TileDB core version to 2.22.0 * update tiledb-py version to 0.28.0 --- apis/python/requirements-py.txt | 2 +- pyproject.toml | 2 +- src/cmake/Modules/FindTileDB_EP.cmake | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apis/python/requirements-py.txt b/apis/python/requirements-py.txt index 43270d623..57aa73d22 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.27.0 +tiledb==0.28.0 scikit-learn==1.3.2 diff --git a/pyproject.toml b/pyproject.toml index b036d221f..2d2b6133e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,7 +19,7 @@ classifiers = [ dependencies = [ "tiledb-cloud>=0.11", - "tiledb>=0.27.0", + "tiledb>=0.28.0", "typing-extensions", # for tiledb-cloud indirect, x-ref https://github.com/TileDB-Inc/TileDB-Cloud-Py/pull/428 "scikit-learn", ] diff --git a/src/cmake/Modules/FindTileDB_EP.cmake b/src/cmake/Modules/FindTileDB_EP.cmake index d530acd07..3816ad835 100644 --- a/src/cmake/Modules/FindTileDB_EP.cmake +++ b/src/cmake/Modules/FindTileDB_EP.cmake @@ -53,9 +53,9 @@ else() # Try to download prebuilt artifacts unless the user specifies to build from source if(DOWNLOAD_TILEDB_PREBUILT) - fetch_prebuilt_tiledb(VERSION 2.21.1) + fetch_prebuilt_tiledb(VERSION 2.22.0) else() # Build from source - fetch_source_tiledb(VERSION 2.21.1) + fetch_source_tiledb(VERSION 2.22.0) endif() list(APPEND FORWARD_EP_CMAKE_ARGS -DEP_TILEDB_BUILT=TRUE)