Updated dependencies

This commit is contained in:
2020-11-02 23:38:38 +05:30
parent d9eb335ef3
commit d64cb54702
4 changed files with 41 additions and 34 deletions

1
brewman/.gitignore vendored
View File

@ -1,3 +1,4 @@
*.pyc
*/__pycache__/
*.egg-info/
dist/

View File

@ -6,7 +6,7 @@ authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies]
python = "^3.8"
uvicorn = "^0.12.1"
uvicorn = "^0.12.2"
fastapi = "^0.61.1"
python-jose = {extras = ["cryptography"], version = "^3.2.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.3"}
@ -17,7 +17,7 @@ PyJWT = "^1.7.1"
alembic = "^1.4.3"
itsdangerous = "^1.1.0"
python-dotenv = "^0.14.0"
pydantic = {extras = ["dotenv"], version = "^1.6.1"}
pydantic = {extras = ["dotenv"], version = "^1.7.2"}
starlette = "^0.13.6"
[tool.poetry.dev-dependencies]

6
brewman/tests-start.sh Normal file
View File

@ -0,0 +1,6 @@
#! /usr/bin/env bash
set -e
python /app/app/tests_pre_start.py
bash ./scripts/test.sh "$@"