-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Internal context-handling updates (#444)
* Internal context-handling updates * more * code-review feedback
- Loading branch information
Showing
9 changed files
with
75 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#!/usr/bin/env python | ||
|
||
import sys | ||
|
||
import tiledb | ||
import tiledbsoma | ||
import tiledbsoma.io | ||
|
||
t = tiledbsoma | ||
|
||
import anndata as ad | ||
import numpy as np | ||
import pandas as pd | ||
import pyarrow as pa | ||
import scanpy as sc | ||
import scipy as sp | ||
import pybind11 | ||
|
||
print("tiledbsoma.__version__ ", tiledbsoma.__version__) | ||
print("tiledb.__version__ ", tiledb.__version__) | ||
print( | ||
"core version ", | ||
".".join(str(ijk) for ijk in list(tiledb.libtiledb.version())), | ||
) | ||
print("anndata.__version__ (ad)", ad.__version__) | ||
print("numpy.__version__ (np)", np.__version__) | ||
print("pandas.__version__ (pd)", pd.__version__) | ||
print("pyarrow.__version__ (pa)", pa.__version__) | ||
print("scanpy.__version__ (sc)", sc.__version__) | ||
print("scipy.__version__ (sp)", sp.__version__) | ||
print("pybind11.__version__ ", pybind11.__version__) | ||
print( | ||
"python__version__ ", | ||
".".join( | ||
[ | ||
str(e) | ||
for e in [ | ||
sys.version_info.major, | ||
sys.version_info.minor, | ||
sys.version_info.micro, | ||
] | ||
] | ||
), | ||
) |