Skip to content

Commit

Permalink
Merge remote-tracking branch 'make/main' into graph-init
Browse files Browse the repository at this point in the history
  • Loading branch information
kod-kristoff committed May 6, 2024
2 parents 472caf5 + 18c3539 commit 6593585
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ help:
@echo ""
@echo "publish [branch=]"
@echo " pushes the given branch including tags to origin, for CI to publish based on tags. (Default: branch='main')"
@echo " Typically used after `make bumpversion`"
@echo " Typically used after 'make bumpversion'"
@echo ""
@echo "prepare-release"
@echo " run tasks to prepare a release"
Expand Down Expand Up @@ -89,6 +89,11 @@ install-dev:
install:
pdm sync --prod

lock: pdm.lock

pdm.lock: pyproject.toml
pdm lock

.PHONY: test
test:
${INVENV} pytest -vv ${tests}
Expand Down Expand Up @@ -145,7 +150,7 @@ publish:
prepare-release: update-changelog tests/requirements-testing.lock

# we use lock extension so that dependabot doesn't pick up changes in this file
tests/requirements-testing.lock: pyproject.toml
tests/requirements-testing.lock: pyproject.toml pdm.lock
pdm export --dev --format requirements --output $@

.PHONY: update-changelog
Expand Down

0 comments on commit 6593585

Please sign in to comment.