Skip to content

Commit

Permalink
πŸ’š Fix tiledbsoma installation in CI (#2208)
Browse files Browse the repository at this point in the history
  • Loading branch information
Koncopd authored Nov 24, 2024
1 parent b4d7388 commit e4c7ddc
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,9 @@ def install_ci(session, group):
run(session, "uv pip install --system huggingface_hub")
elif group == "unit-storage":
extras += "aws,zarr,bionty"
run(session, "uv pip install --system tiledbsoma>=1.15.0rc3")
# for tiledbsoma, otherwise resolution fails for some reason
run(session, "uv pip install --system scanpy>=1.10.0")
run(session, "uv pip install --system tiledbsoma>=1.15.0rc3,!=1.15.0rc4")
elif group == "tutorial":
extras += "aws,jupyter,bionty"
run(session, "uv pip install --system huggingface_hub")
Expand Down

0 comments on commit e4c7ddc

Please sign in to comment.