From fad9111241b546b56cb869a7b25765d1a141e913 Mon Sep 17 00:00:00 2001 From: Tony Garnock-Jones Date: Fri, 11 Feb 2022 11:57:29 +0100 Subject: [PATCH] Utility for tagging --- implementations/python/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/implementations/python/Makefile b/implementations/python/Makefile index 0d2b94c..8015e72 100644 --- a/implementations/python/Makefile +++ b/implementations/python/Makefile @@ -8,6 +8,9 @@ coverage: update-test-data update-test-data: rsync ../../tests/samples.bin ../../tests/samples.pr tests +tag: + git tag python-preserves@`python3 setup.py --version` + clean: rm -rf htmlcov find . -iname __pycache__ -o -iname '*.pyc' | xargs rm -rf