Skip to content

Commit 969181b

Browse files
committed
update dask and pandas
1 parent 958f336 commit 969181b

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ classifiers = [
3030
]
3131
dependencies = [
3232
"bokeh>=2.4.2",
33-
"dask>=2021.12.0,<2024.8",
33+
"dask[dataframe]>=2024.8,<2025.5", # limit due to https://github.com/dask/dask/issues/12122
3434
"elabapi-python>=5.0,<5.2",
3535
"fastdtw>=0.3.4",
3636
"h5py>=3.6.0",
@@ -41,7 +41,7 @@ dependencies = [
4141
"natsort>=8.1.0",
4242
"numba>=0.55.1",
4343
"numpy>=2.0.0",
44-
"pandas>=1.4.1",
44+
"pandas>=3.0.0",
4545
"photutils<2.0",
4646
"psutil>=5.9.0",
4747
"pynxtools-mpes>=0.2.6",

src/sed/__init__.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
"""sed module easy access APIs."""
22
import importlib.metadata
33

4-
import dask
5-
6-
dask.config.set({"dataframe.query-planning": False})
7-
84
from .core.processor import SedProcessor # noqa: E402
95

106
__version__ = importlib.metadata.version("sed-processor")

0 commit comments

Comments
 (0)