Skip to content

Commit ca5a8b9

Browse files
authored
Update TileDB and TileDB-Py Versions (#886)
* Bumped TileDB version to 2.30.1 * Bumped TileDB-Py version to 0.36.1
1 parent c9cc78d commit ca5a8b9

2 files changed

Lines changed: 13 additions & 13 deletions

File tree

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
matrix:
2525
os: [macos-15, ubuntu-24.04]
2626
branches:
27-
- {libtiledb: release-2.30, tiledb-py: 0.36.0}
27+
- {libtiledb: release-2.30, tiledb-py: 0.36.1}
2828
- {libtiledb: main, tiledb-py: main}
2929
env:
3030
MACOSX_DEPLOYMENT_TARGET: 10.15

libtiledbvcf/cmake/Modules/FindTileDB_EP.cmake

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -52,24 +52,24 @@ else()
5252
# Try to download prebuilt artifacts unless the user specifies to build from source
5353
if(DOWNLOAD_TILEDB_PREBUILT)
5454
if (WIN32) # Windows
55-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.0/tiledb-windows-x86_64-2.30.0-9b5305d.zip")
56-
SET(DOWNLOAD_SHA1 "de5baf2fe7bc8975ddc7988fb279f2bac7496715")
55+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.1/tiledb-windows-x86_64-2.30.1-6ea48ca.zip")
56+
SET(DOWNLOAD_SHA1 "41ac699f3f2caec946bf8c842097ce305f9b4a1d")
5757
elseif(APPLE) # OSX
5858

5959
if (CMAKE_OSX_ARCHITECTURES STREQUAL x86_64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "(x86_64)|(AMD64|amd64)|(^i.86$)")
60-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.0/tiledb-macos-x86_64-2.30.0-9b5305d.tar.gz")
61-
SET(DOWNLOAD_SHA1 "2dd3f2920bb297fd1fda5b9915cff7073df78641")
60+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.1/tiledb-macos-x86_64-2.30.1-6ea48ca.tar.gz")
61+
SET(DOWNLOAD_SHA1 "a75934b30d0f47269c1b272772c89fcd26232cf5")
6262
elseif (CMAKE_OSX_ARCHITECTURES STREQUAL arm64 OR CMAKE_SYSTEM_PROCESSOR MATCHES "^aarch64" OR CMAKE_SYSTEM_PROCESSOR MATCHES "^arm")
63-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.0/tiledb-macos-arm64-2.30.0-9b5305d.tar.gz")
64-
SET(DOWNLOAD_SHA1 "3f6fb0b4b8d603a3c92110cbf59f5460d4c8fdc3")
63+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.1/tiledb-macos-arm64-2.30.1-6ea48ca.tar.gz")
64+
SET(DOWNLOAD_SHA1 "71d6ec1af1199ac64d3f97b24edcff1f8ffb8cb8")
6565
endif()
6666
else() # Linux
6767
if(CMAKE_SYSTEM_PROCESSOR MATCHES "^(aarch64|arm64|ARM64)")
68-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.0/tiledb-linux-arm64-2.30.0-9b5305d.tar.gz")
69-
SET(DOWNLOAD_SHA1 "20c820eaa86536d8a433c7c8eb4ae267a59bed76")
68+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.1/tiledb-linux-arm64-2.30.1-6ea48ca.tar.gz")
69+
SET(DOWNLOAD_SHA1 "047c3b3f242f437b02abd5ef6b83837b40aa8632")
7070
else()
71-
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.0/tiledb-linux-x86_64-2.30.0-9b5305d.tar.gz")
72-
SET(DOWNLOAD_SHA1 "1c91f12e5cb789eafb0696cfd77bacb78a8e9f5d")
71+
SET(DOWNLOAD_URL "https://github.com/TileDB-Inc/TileDB/releases/download/2.30.1/tiledb-linux-x86_64-2.30.1-6ea48ca.tar.gz")
72+
SET(DOWNLOAD_SHA1 "2e3c3ec0e83f4bef1200cafe9f2114a5e9aa7374")
7373
endif()
7474
endif()
7575

@@ -92,8 +92,8 @@ else()
9292
else() # Build from source
9393
ExternalProject_Add(ep_tiledb
9494
PREFIX "externals"
95-
URL "https://github.com/TileDB-Inc/TileDB/archive/2.30.0.zip"
96-
URL_HASH SHA1=fddca33c76819bcc3c4cfa1404c191cd7610235b
95+
URL "https://github.com/TileDB-Inc/TileDB/archive/2.30.1.zip"
96+
URL_HASH SHA1=9d02c388f3f88c543b77b66faf2bf2ce412918a9
9797
DOWNLOAD_NAME "tiledb.zip"
9898
CMAKE_ARGS
9999
-DCMAKE_INSTALL_PREFIX=${EP_INSTALL_PREFIX}

0 commit comments

Comments
 (0)