Chore: Updated dependencies

Chore: Added the set -e command to deploy so that it quits on errors
This commit is contained in:
Amritanshu Agrawal 2021-06-19 10:51:37 +05:30
parent 70d76f9951
commit b47715bc22
2 changed files with 13 additions and 12 deletions

View File

@ -6,20 +6,20 @@ authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.8" python = "^3.8"
uvicorn = {extras = ["standard"], version = "^0.13.4"} uvicorn = {extras = ["standard"], version = "^0.14.0"}
fastapi = "^0.63.0" fastapi = "^0.65.2"
python-jose = {extras = ["cryptography"], version = "^3.2.0"} python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"} passlib = {extras = ["bcrypt"], version = "^1.7.4"}
psycopg2-binary = "^2.8.6" psycopg2-binary = "^2.9.1"
SQLAlchemy = "^1.4.11" SQLAlchemy = "^1.4.18"
python-multipart = "^0.0.5" python-multipart = "^0.0.5"
PyJWT = "^2.0.1" PyJWT = "^2.1.0"
alembic = "^1.5.7" alembic = "^1.6.5"
itsdangerous = "^1.1.0" itsdangerous = "^2.0.1"
python-dotenv = "^0.14.0" python-dotenv = "^0.17.1"
pydantic = {extras = ["dotenv"], version = "^1.8.1"} pydantic = {extras = ["dotenv"], version = "^1.8.2"}
starlette = "^0.13.6" starlette = "^0.14.2"
arq = "^0.19.1" arq = "^0.20"
aiohttp = "^3.7.4" aiohttp = "^3.7.4"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]

View File

@ -1,4 +1,5 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -e
parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P ) parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P )
cd "$parent_path" || exit cd "$parent_path" || exit