Merge remote-tracking branch 'origin/main'

# Conflicts:
#	Pipfile.lock
This commit is contained in:
grillazz 2021-12-21 21:16:09 +01:00
commit 277d200f1a
2 changed files with 3 additions and 2 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.

View File

@ -16,6 +16,7 @@ eventlet = "*"
aioredis = "*"
rich = "*"
pytest-cov = "*"
pylint = "*"
[dev-packages]
isort = "*"