From 0786a634b0bbcee7a4b417afa322c4c79c591a59 Mon Sep 17 00:00:00 2001 From: tanshu Date: Sat, 3 Apr 2021 07:54:39 +0530 Subject: [PATCH] Chore: Updated a few dependencies --- brewman/alembic/env.py | 2 +- brewman/pyproject.toml | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/brewman/alembic/env.py b/brewman/alembic/env.py index dffc52b5..fbe6df32 100644 --- a/brewman/alembic/env.py +++ b/brewman/alembic/env.py @@ -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 diff --git a/brewman/pyproject.toml b/brewman/pyproject.toml index 2d1ef733..018730dd 100644 --- a/brewman/pyproject.toml +++ b/brewman/pyproject.toml @@ -6,25 +6,25 @@ authors = ["tanshu "] [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"]