mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-05 18:58:53 -05:00
33 lines
786 B
Makefile
33 lines
786 B
Makefile
PYTHON ?= python3.8
|
|
|
|
# Python Code Style
|
|
reformat:
|
|
$(PYTHON) -m black -l 99 --target-version py38 `git ls-files "*.py"`
|
|
stylecheck:
|
|
$(PYTHON) -m black --check -l 99 --target-version py38 `git ls-files "*.py"`
|
|
|
|
# Translations
|
|
gettext:
|
|
$(PYTHON) -m redgettext --command-docstrings --verbose --recursive redbot --exclude-files "redbot/pytest/**/*"
|
|
upload_translations:
|
|
crowdin upload sources
|
|
download_translations:
|
|
crowdin download
|
|
|
|
# Dependencies
|
|
bumpdeps:
|
|
$(PYTHON) tools/bumpdeps.py
|
|
|
|
# Development environment
|
|
newenv:
|
|
$(PYTHON) -m venv --clear .venv
|
|
.venv/bin/pip install -U pip setuptools
|
|
$(MAKE) syncenv
|
|
syncenv:
|
|
.venv/bin/pip install -Ur ./tools/dev-requirements.txt
|
|
|
|
# Changelog check
|
|
checkchangelog:
|
|
bash tools/check_changelog_entries.sh
|
|
$(PYTHON) -m towncrier --draft
|