File tree 2 files changed +13
-2
lines changed
2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,15 @@ As the compiled tsfresh package is hosted on the Python Package Index (PyPI) you
13
13
14
14
pip install tsfresh
15
15
16
+ If you need to work with large time series data that may not fit in memory, install tsfresh with
17
+ `Dask <https://www.dask.org >`_:
18
+
19
+ .. code :: shell
20
+
21
+ pip install tsfresh[dask]
22
+
23
+ See also :ref: `large-data-label `.
24
+
16
25
17
26
Dive in
18
27
-------
Original file line number Diff line number Diff line change @@ -42,8 +42,6 @@ install_requires =
42
42
patsy>=0.4.1
43
43
scikit-learn>=0.22.0
44
44
tqdm>=4.10.0
45
- dask[dataframe]>=2.9.0
46
- distributed>=2.11.0
47
45
stumpy>=1.7.2
48
46
cloudpickle
49
47
@@ -56,6 +54,9 @@ exclude =
56
54
tests*
57
55
58
56
[options.extras_require]
57
+ dask =
58
+ dask[dataframe]>=2.9.0
59
+ distributed>=2.11.0
59
60
matrixprofile =
60
61
matrixprofile>=1.1.10,<2.0.0
61
62
67
68
68
69
# Add here test requirements (semicolon/line-separated)
69
70
testing =
71
+ %(dask)s
70
72
pytest>=4.4.0
71
73
pytest-cov>=2.6.1
72
74
pytest-xdist>=1.26.1
You can’t perform that action at this time.
0 commit comments