make setup
make deploy
deploy
target may not succeed if Pipfile.lock
is out of date.setup
target can be used first in such a case.make all
will run the deploy
target, among the other key targets.The make clean
target removes any previously made release_noter*.md
file(s).
Running release_noter.py
multiple times without cleaning creates the next N
release_noter-N.md
file, without overwriting the previous one(s).
make help
release_noter*.md
file(s) can be edited then copied over to the homepage
.x.y.md
, where x.y
is the major release version.x.y.md
can be edited with release_noter*.md
snippets.make test make test COMMITS=100
This target will use the -l
option, which takes more time as COMMITS
increases.
pipenv run python release_noter.py v3.2.3..HEAD pipenv run python release_noter.py v3.2.3..v3.3.0-rc0 pipenv run python release_noter.py v3.2.3..v3.3.0-rc0 -l
make black
make flake