You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please refer to our FAQ and look at our known issues before opening a bug report.
Describe the bug
When trying to import visualize in spatial enrichment notebook (similarly for the kmeans ad LDA as well), it errors due to the depreciated np.float being used by calico.spatial_lda. PR #984 addressed this by changing the numpy depency in pyproject.toml to be capped at 1.23; however, in practice when users create an ark_env to run the notebooks, the conda installation of numpy using the environment.yml file supersedes this.
A larger issue is that any dependency specification made in pyproject.toml will be irrelevant when the same package is listed in the environment.yml file.
Expected behavior
We should remove any packages from the conda install unless strictly necessary, and rely on the more detailed pyproject.toml installs. This will also help prevent future issues with package updates we aren't prepared to handle yet, to then update on our own terms.
Please refer to our FAQ and look at our known issues before opening a bug report.
Describe the bug
When trying to import visualize in spatial enrichment notebook (similarly for the kmeans ad LDA as well), it errors due to the depreciated
np.float
being used bycalico.spatial_lda
. PR #984 addressed this by changing the numpy depency in pyproject.toml to be capped at 1.23; however, in practice when users create an ark_env to run the notebooks, the conda installation of numpy using the environment.yml file supersedes this.A larger issue is that any dependency specification made in pyproject.toml will be irrelevant when the same package is listed in the environment.yml file.
Expected behavior
We should remove any packages from the conda install unless strictly necessary, and rely on the more detailed pyproject.toml installs. This will also help prevent future issues with package updates we aren't prepared to handle yet, to then update on our own terms.
Current environment.yml specifications:
After consulting with @srivarra, we only need to keep python=3.11, pip, hdf5, ipywidgets, and the pip installs.
New file will contain only
To Reproduce
Create ark_env and try to import visualize in any notebok.
The text was updated successfully, but these errors were encountered: