From cf74393cd376440d5dda412ca223f1b43edefadb Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Fri, 17 Jan 2020 20:14:12 +0000 Subject: [PATCH] add missing contrib module to Makefile --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index f379edcc..99237c5b 100644 --- a/Makefile +++ b/Makefile @@ -118,10 +118,12 @@ prebuildclean: coverclean: @+python -c "import os; os.remove('.coverage') if os.path.exists('.coverage') else None" @+python -c "import shutil; shutil.rmtree('tqdm/__pycache__', True)" + @+python -c "import shutil; shutil.rmtree('tqdm/contrib/__pycache__', True)" @+python -c "import shutil; shutil.rmtree('tqdm/tests/__pycache__', True)" clean: @+python -c "import os, glob; [os.remove(i) for i in glob.glob('*.py[co]')]" @+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/*.py[co]')]" + @+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/contrib/*.py[co]')]" @+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/tests/*.py[co]')]" @+python -c "import os, glob; [os.remove(i) for i in glob.glob('tqdm/examples/*.py[co]')]" toxclean: