-
Notifications
You must be signed in to change notification settings - Fork 93
/
Makefile
50 lines (45 loc) · 1.37 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
.ONESHELL:
.SHELLFLAGS = -ec
.SILENT:
version := $(shell python -c "import tomllib;print(tomllib.load(open('pyproject.toml', 'rb'))['project']['version'])")
.PHONY: dist
dist:
python -m build
.PHONY: release
release: lock dist
# check that changelog is updated. only look at first 3 parts of semver
version=$(version)
stripped=$$(echo $${version} | cut -d . -f -3 | cut -d '-' -f 1)
if ! grep $${stripped} CHANGELOG.rst
then
echo "Changelog doesn't seem to be updated! Quitting..."
exit 1
fi
# generate release notes from changelog
awk "BEGIN{p=0}; /^$${stripped}/{next}; /---/{p=1;next}; /^$$/{exit}; p {print}" CHANGELOG.rst > TMPNOTES
# make github and pypi release
gh release create --latest --verify-tag v$(version) dist/pykeepass-$(version)* -F TMPNOTES
twine upload -u __token__ dist/pykeepass-$(version)*
.PHONY: lock
lock:
# run tests then make a requirements.txt lockfile
rm -rf .venv_lock
virtualenv .venv_lock
. .venv_lock/bin/activate
pip install .[test]
python tests/tests.py
pip freeze > requirements.txt
.PHONY: tag
tag:
# tag git commit
git add requirements.txt
git add pyproject.toml
git add CHANGELOG.rst
git commit -m "bump version" --allow-empty
git tag -a v$(version) -m "version $(version)"
git push --tags
git push
.PHONY: docs
docs:
pdoc -o docs --docformat google --no-search pykeepass '!pykeepass.icons'
ghp-import -f -p -b docs docs