From 969512fa255afba6bdf7d6b40627496a8c4b5e8a Mon Sep 17 00:00:00 2001 From: Alex Campbell <7597928+accurrently@users.noreply.github.com> Date: Wed, 19 Feb 2020 11:19:41 -0500 Subject: [PATCH] Keep Dask fragments out of commits The folder "dask-worker-space/" is a cache folder (like "__pycache__/") for IPython/Jupyter or other projects that implement Dask (https://dask.org). If a data science project package uses Jupyter notebooks, there is a chance that they might use Dask. This addition keeps that cache out of commits. --- {{cookiecutter.project_slug}}/.gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/{{cookiecutter.project_slug}}/.gitignore b/{{cookiecutter.project_slug}}/.gitignore index 43091aa95..281f2d257 100644 --- a/{{cookiecutter.project_slug}}/.gitignore +++ b/{{cookiecutter.project_slug}}/.gitignore @@ -71,6 +71,9 @@ target/ # Jupyter Notebook .ipynb_checkpoints +# Dask worker cache +dask-worker-space/ + # pyenv .python-version @@ -102,4 +105,4 @@ ENV/ .mypy_cache/ # IDE settings -.vscode/ \ No newline at end of file +.vscode/