Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make Dask and Distributed optional dependencies #1061

Merged
merged 2 commits into from
Jan 28, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions docs/text/quick_start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,15 @@ As the compiled tsfresh package is hosted on the Python Package Index (PyPI) you

pip install tsfresh

If you need to work with large time series data that may not fit in memory, install tsfresh with
`Dask <https://www.dask.org>`_:

.. code:: shell

pip install tsfresh[dask]

See also :ref:`large-data-label`.


Dive in
-------
Expand Down
6 changes: 4 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,6 @@ install_requires =
patsy>=0.4.1
scikit-learn>=0.22.0
tqdm>=4.10.0
dask[dataframe]>=2.9.0
distributed>=2.11.0
stumpy>=1.7.2
cloudpickle

Expand All @@ -56,6 +54,9 @@ exclude =
tests*

[options.extras_require]
dask =
dask[dataframe]>=2.9.0
distributed>=2.11.0
matrixprofile =
matrixprofile>=1.1.10,<2.0.0

Expand All @@ -67,6 +68,7 @@ docs =

# Add here test requirements (semicolon/line-separated)
testing =
tsfresh[dask]
pytest>=4.4.0
pytest-cov>=2.6.1
pytest-xdist>=1.26.1
Expand Down