Skip to content

Commit de72bd3

Browse files
committed
Limit dependencies
1 parent 227afd4 commit de72bd3

File tree

3 files changed

+12
-16
lines changed

3 files changed

+12
-16
lines changed

pyproject.toml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "vitessce"
7-
version = "3.6.1"
7+
version = "3.6.2"
88
authors = [
99
{ name="Mark Keller", email="[email protected]" },
1010
]
@@ -26,20 +26,11 @@ classifiers = [
2626
]
2727
dependencies = [
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
]
7061
all = [
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
]
9697
demos = [
9798
"pulp==2.7.0",

src/vitessce/__init__.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -27,11 +27,6 @@
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-
3530
from .wrappers import AbstractWrapper
3631

3732
# We allow installation without all of the dependencies that the widget requires.

tests/test_config_converter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
from unittest.mock import patch, Mock
33
from copy import deepcopy
44

5-
from vitessce import (
5+
from vitessce.config_converter import (
66
CellBrowserToAnndataZarrConverter,
77
convert_cell_browser_project_to_anndata,
88
)

0 commit comments

Comments
 (0)