File tree Expand file tree Collapse file tree 3 files changed +12
-16
lines changed
Expand file tree Collapse file tree 3 files changed +12
-16
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44
55[project ]
66name = " vitessce"
7- version = " 3.6.1 "
7+ version = " 3.6.2 "
88authors = [
99 {
name =
" Mark Keller" ,
email =
" [email protected] " },
1010]
@@ -26,20 +26,11 @@ classifiers = [
2626]
2727dependencies = [
2828 ' scipy>=1.2.1' ,
29- ' negspy>=0.2.24' ,
3029 ' pandas>=1.1.2' ,
3130 ' black>=21.11b1' ,
3231 ' numpy>=1.21.2' ,
3332 ' zarr>=2.5.0,<3' ,
3433 ' numcodecs>=0.5.7,<0.16.0' ,
35- ' anndata>=0.7.8' ,
36- # scanpy < 1.10.3 does not support numpy >= 2.0.0 and does not
37- # Reference: https://github.com/scverse/scanpy/pull/3115/files
38- ' scanpy>=1.10.2' ,
39- ' ome-zarr<0.10.3' ,
40- ' tifffile>=2020.10.1' ,
41- ' jsonschema>=3.2' ,
42- ' tqdm>=4.1.0' ,
4334]
4435
4536[project .optional-dependencies ]
@@ -68,6 +59,15 @@ docs = [
6859 ' jinja2' ,
6960]
7061all = [
62+ # For data_utils
63+ ' negspy>=0.2.24' ,
64+ ' anndata>=0.7.8' ,
65+ # scanpy < 1.10.3 does not support numpy >= 2.0.0 and does not
66+ # Reference: https://github.com/scverse/scanpy/pull/3115/files
67+ ' scanpy>=1.10.2' ,
68+ ' ome-zarr<0.10.3' ,
69+ ' tifffile>=2020.10.1' ,
70+
7171 ' jupyter-server-proxy>=1.5.2' ,
7272 ' oxc-py>=0.1.1' ,
7373 ' anywidget>=0.9.10' ,
@@ -92,6 +92,7 @@ notebook = [
9292 ' dask[dataframe]==2024.11.1' ,
9393 ' marimo' ,
9494 ' starlette>=0.42.0' ,
95+ ' tqdm>=4.1.0' ,
9596]
9697demos = [
9798 " pulp==2.7.0" ,
Original file line number Diff line number Diff line change 2727 BASE_URL_PLACEHOLDER ,
2828)
2929
30- from .config_converter import (
31- CellBrowserToAnndataZarrConverter , # only exported for testing.
32- convert_cell_browser_project_to_anndata ,
33- )
34-
3530from .wrappers import AbstractWrapper
3631
3732# We allow installation without all of the dependencies that the widget requires.
Original file line number Diff line number Diff line change 22from unittest .mock import patch , Mock
33from copy import deepcopy
44
5- from vitessce import (
5+ from vitessce . config_converter import (
66 CellBrowserToAnndataZarrConverter ,
77 convert_cell_browser_project_to_anndata ,
88)
You can’t perform that action at this time.
0 commit comments