diff options
Diffstat (limited to 'pyproject.toml')
| -rw-r--r-- | pyproject.toml | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/pyproject.toml b/pyproject.toml index 2f1322e3..b350836e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,12 +7,12 @@ license = "MIT" [tool.poetry.dependencies] python = "3.9.*" -django = "~=3.0.4" +django = "~=3.1.14" django-environ = "~=0.4.5" -django-filter = "~=2.1.0" -djangorestframework = "~=3.11.0" +django-filter = "~=21.1" +djangorestframework = "~=3.12.0" psycopg2-binary = "~=2.8.0" -django-simple-bulma = "~=2.1" +django-simple-bulma = "~=2.4" whitenoise = "~=5.0" requests = "~=2.21" pyyaml = "~=5.1" @@ -37,7 +37,7 @@ flake8-todo = "~=0.7" mccabe = "~=0.6.1" pep8-naming = "~=0.9" pre-commit = "~=2.1" -pyfakefs = "~=4.4.0" +pyfakefs = "~=4.5" coveralls = "~=2.1" taskipy = "~=1.7.0" python-dotenv = "~=0.17.1" @@ -51,7 +51,8 @@ start = "python manage.py run --debug" makemigrations = "python manage.py makemigrations" django_shell = "python manage.py shell" test = "coverage run manage.py test" +coverage = "coverage run manage.py test --no-input; coverage report -m" report = "coverage report -m" lint = "pre-commit run --all-files" precommit = "pre-commit install" -static = "python mange.py distill-local build --traceback --force" +static = "python manage.py distill-local build --traceback --force" |