mirror of
https://github.com/Hopiu/django-modeltranslation.git
synced 2026-03-16 22:10:31 +00:00
17 lines
249 B
Makefile
17 lines
249 B
Makefile
release:
|
|
standard-version
|
|
|
|
publish: clean
|
|
python -m build
|
|
twine upload dist/*
|
|
git push --follow-tags
|
|
|
|
clean:
|
|
rm -rf dist
|
|
|
|
lint:
|
|
ruff check modeltranslation
|
|
ruff format --check modeltranslation *.py
|
|
|
|
typecheck:
|
|
mypy --pretty modeltranslation
|