diff --git a/Makefile b/Makefile index ee67194d..b71153e1 100644 --- a/Makefile +++ b/Makefile @@ -16,7 +16,7 @@ poetry-remove: install: poetry lock -n && poetry export --without-hashes > requirements.txt poetry install -n - poetry run mypy --install-types --non-interactive + -poetry run mypy --install-types --non-interactive ./ .PHONY: pre-commit-install pre-commit-install: diff --git a/README.md b/README.md index 4317b444..41a63f0a 100644 --- a/README.md +++ b/README.md @@ -17,7 +17,7 @@ Your next Python package needs a bleeding-edge project structure. ## TL;DR ```bash -cookiecutter gh:TezRomacH/python-package-template --checkout v1.0.7 +cookiecutter gh:TezRomacH/python-package-template --checkout v1.0.8 ``` > All you need is the latest version of cookiecutter 😉 @@ -65,7 +65,7 @@ pip install -U cookiecutter then go to a directory where you want to create your project and run: ```bash -cookiecutter gh:TezRomacH/python-package-template --checkout v1.0.7 +cookiecutter gh:TezRomacH/python-package-template --checkout v1.0.8 ``` ### Input variables diff --git a/pyproject.toml b/pyproject.toml index 912e1e68..3472e9d8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "python-package-template" -version = "1.0.7" +version = "1.0.8" description = "Cookiecutter template for Python cli/packages" readme = "README.md" authors = ["Roman Tezikov "] diff --git a/{{ cookiecutter.project_name }}/Makefile b/{{ cookiecutter.project_name }}/Makefile index 10d369cf..3808a0a3 100644 --- a/{{ cookiecutter.project_name }}/Makefile +++ b/{{ cookiecutter.project_name }}/Makefile @@ -20,7 +20,7 @@ poetry-remove: install: poetry lock -n && poetry export --without-hashes > requirements.txt poetry install -n - poetry run mypy --install-types --non-interactive + -poetry run mypy --install-types --non-interactive ./ .PHONY: pre-commit-install pre-commit-install: