Skip to content
Merged
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
cache-environment: true

- name: Install pip requirements
run: pip install ./
run: pip install -e ".[dev]"

- name: Run tests
run: nbdev_test --skip_file_glob "*distributed*"
Expand Down
322 changes: 322 additions & 0 deletions nbs/docs/tutorials/12_longhorizon.ipynb

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
with open("README.md", "r", encoding="utf8") as fh:
long_description = fh.read()

dev = ["black", "nbdev", "plotly", "python-dotenv", "statsforecast"]
distributed = ["dask", "fugue[ray]>=0.8.7", "pyspark", "ray[serve-grpc]"]
dev = ["black", "nbdev", "plotly", "python-dotenv", "statsforecast", "datasetsforecast"]
distributed = ["dask[dataframe]", "fugue[ray]>=0.8.7", "pyspark", "ray[serve-grpc]"]
plotting = ["utilsforecast[plotting]>=0.0.5"]
date_extras = ["holidays"]

Expand Down