Skip to content

Commit

Permalink
Do not fatal on 1.15-related assertions (#3137)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkerl authored and github-actions[bot] committed Oct 4, 2024
1 parent 26b8929 commit 08a6633
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions apis/python/src/tiledbsoma/options/_soma_tiledb_context.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,15 @@
import tiledb

from .. import pytiledbsoma as clib
from .._general_utilities import assert_version_before
from .._types import OpenTimestamp
from .._util import ms_to_datetime, to_timestamp_ms


def _warn_ctx_deprecation() -> None:
assert_version_before(1, 15)
pass
# https://github.com/single-cell-data/TileDB-SOMA/issues/3134
# Skipping for 1.15.0rc0
# assert_version_before(1, 15)
warnings.warn(
"tiledb_ctx is now deprecated for removal in 1.15. "
"Use tiledb_config instead by passing "
Expand Down

0 comments on commit 08a6633

Please sign in to comment.