Skip to content

Commit

Permalink
buid: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
klen committed Aug 10, 2023
1 parent 0a9b44d commit d333992
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ VIRTUAL_ENV ?= .venv
# Development
# =============

$(VIRTUAL_ENV): poetry.lock
$(VIRTUAL_ENV): poetry.lock .pre-commit-config.yaml
@poetry install --with tests,dev,example --extras yaml
@poetry self add poetry-bumpversion
@poetry run pre-commit install --hook-type pre-push
@poetry run pre-commit install
@touch $(VIRTUAL_ENV)

.PHONY: t test
Expand Down Expand Up @@ -57,7 +57,7 @@ release: $(VIRTUAL_ENV)
git merge develop
git pull
@poetry version $(VPART)
git commit -am "Bump version: `poetry version -s`"
git commit -am "build(release): `poetry version -s`"
git tag `poetry version -s`
git checkout develop
git merge master
Expand Down

0 comments on commit d333992

Please sign in to comment.