Chore: Updated a few dependencies

This commit is contained in:
Amritanshu Agrawal 2021-04-03 07:54:39 +05:30
parent f1be068d0b
commit 0786a634b0
2 changed files with 8 additions and 8 deletions

View File

@ -12,7 +12,7 @@ logging.getLogger("alembic").setLevel(settings.ALEMBIC_LOG_LEVEL)
# Interpret the config file for Python logging.
# This line sets up loggers basically.
from brewman.models.auth import User # noqa
from brewman.db.base import User # noqa
target_metadata = User.metadata

View File

@ -6,25 +6,25 @@ authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies]
python = "^3.8"
uvicorn = {extras = ["standard"], version = "^0.13.3"}
uvicorn = {extras = ["standard"], version = "^0.13.4"}
fastapi = "^0.63.0"
python-jose = {extras = ["cryptography"], version = "^3.2.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.3"}
psycopg2-binary = "^2.8.6"
SQLAlchemy = "^1.3.22"
SQLAlchemy = "^1.4.4"
python-multipart = "^0.0.5"
PyJWT = "^1.7.1"
alembic = "^1.5.2"
alembic = "^1.5.8"
itsdangerous = "^1.1.0"
python-dotenv = "^0.14.0"
pydantic = {extras = ["dotenv"], version = "^1.7.3"}
pydantic = {extras = ["dotenv"], version = "^1.8.1"}
starlette = "^0.13.6"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.4"
flake8 = "^3.9.0"
black = "^20.8b1"
isort = {extras = ["toml"], version = "^5.7.0"}
pre-commit = "^2.9.3"
isort = {extras = ["toml"], version = "^5.8.0"}
pre-commit = "^2.11.1"
[build-system]
requires = ["poetry-core>=1.0.0"]