Skip to content

Commit

Permalink
Tighten TileDB pypi dependency to be a 0.21.x version. (#1299)
Browse files Browse the repository at this point in the history
It was brought up to me that using `tiledb>=0.21.2` could result in
v0.22.0 matching, which is not what we want (this would cause a core
version mismatch, which is Bad™). Instead, we should pin to `~=0.21.2`,
which means "any v0.21.x version where x >= 2".
  • Loading branch information
thetorpedodog authored Apr 26, 2023
1 parent ca4e566 commit 2d4d1b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apis/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -289,7 +289,7 @@ def run(self):
"scanpy>=1.9.2",
"scipy",
"somacore==1.0.2",
"tiledb>=0.21.2",
"tiledb~=0.21.2",
"typing-extensions", # Note "-" even though `import typing_extensions`
],
extras_require={
Expand Down

0 comments on commit 2d4d1b7

Please sign in to comment.