1
0
mirror of https://github.com/cmur2/python-veml6070.git synced 2025-06-26 22:30:20 +02:00

module: declare Python 2.7 support as legacy

This commit is contained in:
cn
2021-05-21 13:51:29 +02:00
parent 4f16e38129
commit e34a3685db
5 changed files with 1 additions and 105 deletions

View File

@ -21,17 +21,6 @@ lint: ## Lint all source code
test: ## Run all tests
poetry run pytest
.PHONY: rebase-three-branch
rebase-three-branch: ## Rebase the py3 branch with master contents
git stash
git checkout master
git pull
git checkout three
git rebase -i origin/master
git push --force-with-lease
git checkout master
git stash pop
.PHONY: help
help: ## Print this help text
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'