mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-12 01:18:31 +02:00
update makefile to use poetry for more things
This commit is contained in:
parent
69995836ac
commit
ff1a8bf6e9
1 changed files with 3 additions and 3 deletions
6
Makefile
6
Makefile
|
@ -11,11 +11,11 @@ clean:
|
||||||
rm -f *.html
|
rm -f *.html
|
||||||
|
|
||||||
html:
|
html:
|
||||||
mkdocs serve
|
poetry run mkdocs serve
|
||||||
|
|
||||||
# Build GitHub Page from docs
|
# Build GitHub Page from docs
|
||||||
docs:
|
docs:
|
||||||
mkdocs gh-deploy
|
poetry run mkdocs gh-deploy
|
||||||
|
|
||||||
format: ## check style with flake8
|
format: ## check style with flake8
|
||||||
poetry run black features jrnl
|
poetry run black features jrnl
|
||||||
|
@ -31,7 +31,7 @@ dist: clean ## builds source and wheel package
|
||||||
|
|
||||||
release: dist ## package and upload a release
|
release: dist ## package and upload a release
|
||||||
poetry publish
|
poetry publish
|
||||||
mkdocs gh-deploy
|
poetry run mkdocs gh-deploy
|
||||||
|
|
||||||
install: clean ## install the package to the active Python's site-packages
|
install: clean ## install the package to the active Python's site-packages
|
||||||
poetry install
|
poetry install
|
||||||
|
|
Loading…
Add table
Reference in a new issue