From 7323d5bcc9b032d525f9d6468a9713f5be9c4174 Mon Sep 17 00:00:00 2001 From: Casper da Costa-Luis Date: Sat, 10 Feb 2024 17:51:47 +0000 Subject: [PATCH] slight makefile clean --- LICENCE | 2 +- Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/LICENCE b/LICENCE index 32840e7c..a8922b18 100644 --- a/LICENCE +++ b/LICENCE @@ -7,7 +7,7 @@ Exceptions or notable authors are listed below in reverse chronological order: * files: * - MPL-2.0 2015-2023 (c) Casper da Costa-Luis + MPL-2.0 2015-2024 (c) Casper da Costa-Luis [casperdcl](https://github.com/casperdcl). * files: tqdm/_tqdm.py MIT 2016 (c) [PR #96] on behalf of Google Inc. diff --git a/Makefile b/Makefile index 9be766be..ab2863c6 100644 --- a/Makefile +++ b/Makefile @@ -137,9 +137,9 @@ 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('tests/*.py[co]')]" @+python -c "import os, glob; [os.remove(i) for i in glob.glob('benchmarks/*.py[co]')]" + @+python -c "import os, glob; [os.remove(i) for i in glob.glob('examples/*.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/examples/*.py[co]')]" toxclean: @+python -c "import shutil; shutil.rmtree('.tox', True)"