From 1cb5b60b88a2c876adf768208a697138950c48ea Mon Sep 17 00:00:00 2001 From: esc Date: Sun, 12 May 2024 14:37:56 +0200 Subject: [PATCH 1/2] cleanup syntax and add wheelhouse, OSX temp and dist directories. As title --- .gitignore | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 23903ae..9dc9387 100644 --- a/.gitignore +++ b/.gitignore @@ -3,5 +3,8 @@ numba_rvsdg.egg-info .pytest_cache *__pycache__ .coverage -/build -/docs/build +build +dist +docs/build +wheelhouse +.DS_Store From fcb7508dc1841a8fa2c4d977582df26b42d09b7c Mon Sep 17 00:00:00 2001 From: esc Date: Sun, 12 May 2024 14:39:14 +0200 Subject: [PATCH 2/2] adding makefile target 'clean' As title --- makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/makefile b/makefile index 265faf4..94530c3 100644 --- a/makefile +++ b/makefile @@ -14,3 +14,5 @@ conda-env: conda create -n numba-rvsdg conda-install: conda install python=3.12 python-graphviz pyyaml pytest sphinx sphinx_rtd_theme coverage pre-commit +clean: + git clean -dfX