Skip to content

Commit c68b931

Browse files
authored
Update to TileDB Core 2.24.2 (#437)
1 parent a6b7b23 commit c68b931

File tree

2 files changed

+8
-5
lines changed

2 files changed

+8
-5
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ classifiers = [
1919

2020
dependencies = [
2121
"tiledb-cloud>=0.11",
22-
"tiledb>=0.30.1",
22+
"tiledb>=0.30.2",
2323
"typing-extensions", # for tiledb-cloud indirect, x-ref https://github.com/TileDB-Inc/TileDB-Cloud-Py/pull/428
2424
"scikit-learn",
2525
"numpy<2.0.0",

src/cmake/Modules/FindTileDB_EP.cmake

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,18 @@ else()
5252
include(DownloadPrebuiltTileDB)
5353

5454
# Try to download prebuilt artifacts unless the user specifies to build from source
55+
# To update these:
56+
# - Find the TileDB release, i.e. https://github.com/TileDB-Inc/TileDB/releases/tag/2.24.1.
57+
# - Copy the release hash from the `releases.csv.sha256` file in the release.
5558
if(DOWNLOAD_TILEDB_PREBUILT)
5659
fetch_prebuilt_tiledb(
57-
VERSION 2.24.1
58-
RELLIST_HASH SHA256=76d4deebd42afd059729fac7f13b172e1187ab43b8e3d2404f0328a47221a231
60+
VERSION 2.24.2
61+
RELLIST_HASH SHA256=ecc2ba2ce4041884a273707b80caf24db55a9b2f8b649b518e90940211f9f1ca
5962
)
6063
else() # Build from source
6164
fetch_source_tiledb(
62-
VERSION 2.24.1
63-
RELLIST_HASH SHA256=76d4deebd42afd059729fac7f13b172e1187ab43b8e3d2404f0328a47221a231
65+
VERSION 2.24.2
66+
RELLIST_HASH SHA256=ecc2ba2ce4041884a273707b80caf24db55a9b2f8b649b518e90940211f9f1ca
6467
)
6568
endif()
6669

0 commit comments

Comments
 (0)