Add version to _version file, method and test

This commit is contained in:
2022-05-18 10:48:40 +02:00
parent a9384685fe
commit 20db8c5745
6 changed files with 18 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
SHELL := /bin/bash
.DEFAULT_GOAL := help
.PHONY: coverage deps help lint push test doc build
.PHONY: coverage deps help lint push test build
coverage: ## Run tests with coverage
coverage erase
@@ -26,9 +26,6 @@ build: ## Build package
rm -fr build/*
python setup.py sdist bdist_wheel
doc-clean: ## Update documentation
make -C docs --makefile=Makefile clean
help: ## Show help message
@IFS=$$'\n' ; \
help_lines=(`fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##/:/'`); \