mirror of
https://github.com/aiogram/aiogram.git
synced 2026-04-08 16:37:47 +00:00
Bump dev dependencies (#1512)
* Bump dev dependencies * Pre-commit py3.8 support * Pre-commit py3.8 support (v3.5+) * Mute mypy python version bug
This commit is contained in:
parent
0df95a0276
commit
7760ab1d0d
20 changed files with 92 additions and 75 deletions
7
Makefile
7
Makefile
|
|
@ -26,6 +26,11 @@ clean:
|
|||
rm -f .coverage
|
||||
rm -rf {build,dist,site,.cache,.mypy_cache,.ruff_cache,reports}
|
||||
|
||||
.PHONY: install
|
||||
install: clean
|
||||
pip install -e ."[dev,test,docs]" -U --upgrade-strategy=eager
|
||||
pre-commit install
|
||||
|
||||
# =================================================================================================
|
||||
# Code quality
|
||||
# =================================================================================================
|
||||
|
|
@ -34,7 +39,7 @@ clean:
|
|||
lint:
|
||||
isort --check-only $(code_dir)
|
||||
black --check --diff $(code_dir)
|
||||
ruff $(package_dir)
|
||||
ruff check $(package_dir) $(examples_dir)
|
||||
mypy $(package_dir)
|
||||
|
||||
.PHONY: reformat
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue