From b47715bc2244904170ae255b1b36b1484e455116 Mon Sep 17 00:00:00 2001 From: tanshu Date: Sat, 19 Jun 2021 10:51:37 +0530 Subject: [PATCH] Chore: Updated dependencies Chore: Added the set -e command to deploy so that it quits on errors --- barker/pyproject.toml | 24 ++++++++++++------------ deploy.sh | 1 + 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/barker/pyproject.toml b/barker/pyproject.toml index 789c08f..7638da3 100644 --- a/barker/pyproject.toml +++ b/barker/pyproject.toml @@ -6,20 +6,20 @@ authors = ["tanshu "] [tool.poetry.dependencies] python = "^3.8" -uvicorn = {extras = ["standard"], version = "^0.13.4"} -fastapi = "^0.63.0" -python-jose = {extras = ["cryptography"], version = "^3.2.0"} +uvicorn = {extras = ["standard"], version = "^0.14.0"} +fastapi = "^0.65.2" +python-jose = {extras = ["cryptography"], version = "^3.3.0"} passlib = {extras = ["bcrypt"], version = "^1.7.4"} -psycopg2-binary = "^2.8.6" -SQLAlchemy = "^1.4.11" +psycopg2-binary = "^2.9.1" +SQLAlchemy = "^1.4.18" python-multipart = "^0.0.5" -PyJWT = "^2.0.1" -alembic = "^1.5.7" -itsdangerous = "^1.1.0" -python-dotenv = "^0.14.0" -pydantic = {extras = ["dotenv"], version = "^1.8.1"} -starlette = "^0.13.6" -arq = "^0.19.1" +PyJWT = "^2.1.0" +alembic = "^1.6.5" +itsdangerous = "^2.0.1" +python-dotenv = "^0.17.1" +pydantic = {extras = ["dotenv"], version = "^1.8.2"} +starlette = "^0.14.2" +arq = "^0.20" aiohttp = "^3.7.4" [tool.poetry.dev-dependencies] diff --git a/deploy.sh b/deploy.sh index 2fdfaf6..13d0d44 100755 --- a/deploy.sh +++ b/deploy.sh @@ -1,4 +1,5 @@ #!/usr/bin/env bash +set -e parent_path=$( cd "$(dirname "${BASH_SOURCE[0]}")" || exit ; pwd -P ) cd "$parent_path" || exit