Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 commits
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
2 changes: 1 addition & 1 deletion doc/source/user_guide/scale.rst
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ files. Each file in the directory represents a different year of the entire data
starts = [f"20{i:>02d}-01-01" for i in range(N)]
ends = [f"20{i:>02d}-12-13" for i in range(N)]

pathlib.Path("data/timeseries").mkdir(exist_ok=True)
pathlib.Path("data/timeseries").mkdir(exist_ok=True, parents=True)

for i, (start, end) in enumerate(zip(starts, ends)):
ts = make_timeseries(start=start, end=end, freq="1min", seed=i)
Expand Down
1 change: 1 addition & 0 deletions environment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,7 @@ dependencies:
# downstream packages
- dask-core
- seaborn-base
- dask-expr

# local testing dependencies
- moto
Expand Down
1 change: 1 addition & 0 deletions requirements-dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ xlsxwriter>=3.0.5
zstandard>=0.19.0
dask
seaborn
dask-expr
moto
flask
asv>=0.6.1
Expand Down