update project dependencies

This commit is contained in:
kuba
2021-12-20 20:09:43 +01:00
parent 14145d952f
commit 5d0a9168e9
3 changed files with 132 additions and 7 deletions

View File

@@ -31,8 +31,8 @@ safety: ## Check project and dependencies with safety https://github.com/pyupio/
docker-compose run --rm app safety check
.PHONY: py-upgrade
py-upgrade: ## Upgrade project py files with pyupgrade library for python version 3.9
docker-compose run --rm app pyupgrade --py39-plus `find . -name "*.py"`
py-upgrade: ## Upgrade project py files with pyupgrade library for python version 3.10
pyupgrade --py310-plus `find the_app -name "*.py"`
.PHONY: lint
lint: ## Lint project code.