From 6255fcd19526c35023ee70d5ce365b12abbe7132 Mon Sep 17 00:00:00 2001 From: Lon Blauvelt Date: Fri, 8 Oct 2021 14:28:18 -0400 Subject: [PATCH] Remove make clean. (#365) --- Makefile | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/Makefile b/Makefile index 23923687..c26a8484 100644 --- a/Makefile +++ b/Makefile @@ -46,16 +46,13 @@ version: terra_notebook_utils/version.py terra_notebook_utils/version.py: setup.py echo "__version__ = '$$(python setup.py --version)'" > $@ -clean: - git clean -dfx - -build: version clean +build: version python setup.py bdist_wheel -sdist: clean +sdist: python setup.py sdist install: build pip install --upgrade dist/*.whl -.PHONY: test lint mypy tests clean build install dev_scripts/test_installed_cli.py dev_scripts/test_notebook.py wdl_tests/copy_batch.wdl +.PHONY: test lint mypy tests build install dev_scripts/test_installed_cli.py dev_scripts/test_notebook.py wdl_tests/copy_batch.wdl