Chore: Upgraded Python dependecies

This commit is contained in:
Amritanshu Agrawal 2024-05-31 10:19:41 +05:30
parent e252680c65
commit ec8a1f6720
2 changed files with 16 additions and 16 deletions

@ -3,7 +3,7 @@
repos: repos:
- repo: https://github.com/astral-sh/ruff-pre-commit - repo: https://github.com/astral-sh/ruff-pre-commit
# Ruff version. # Ruff version.
rev: v0.1.9 rev: v0.4.6
hooks: hooks:
# Run the linter. # Run the linter.
- id: ruff - id: ruff
@ -12,7 +12,7 @@ repos:
- id: ruff-format - id: ruff-format
- repo: https://github.com/pre-commit/pre-commit-hooks - repo: https://github.com/pre-commit/pre-commit-hooks
rev: v4.3.0 rev: v4.6.0
hooks: hooks:
- id: trailing-whitespace - id: trailing-whitespace
- id: end-of-file-fixer - id: end-of-file-fixer

@ -6,31 +6,31 @@ authors = ["tanshu <git@tanshu.com>"]
[tool.poetry.dependencies] [tool.poetry.dependencies]
python = "^3.12" python = "^3.12"
uvicorn = {extras = ["standard"], version = "^0.23.2"} uvicorn = {extras = ["standard"], version = "^0.30.0"}
fastapi = {extras = ["all"], version = "^0.110.1"} fastapi = {extras = ["all"], version = "^0.111.0"}
python-jose = {extras = ["cryptography"], version = "^3.3.0"} python-jose = {extras = ["cryptography"], version = "^3.3.0"}
passlib = {extras = ["bcrypt"], version = "^1.7.4"} passlib = {extras = ["bcrypt"], version = "^1.7.4"}
psycopg = {extras = ["binary", "pool"], version = "^3.1.18"} psycopg = {extras = ["binary", "pool"], version = "^3.1.19"}
SQLAlchemy = "^2.0.29" SQLAlchemy = "^2.0.30"
python-multipart = "^0.0.9" python-multipart = "^0.0.9"
PyJWT = "^2.8.0" PyJWT = "^2.8.0"
alembic = "^1.13.1" alembic = "^1.13.1"
itsdangerous = "^2.1.2" itsdangerous = "^2.2.0"
python-dotenv = "^1.0.1" python-dotenv = "^1.0.1"
pydantic = {extras = ["dotenv"], version = "^2.6.2"} pydantic = {extras = ["dotenv"], version = "^2.7.2"}
starlette = "^0.37.2" starlette = "^0.37.2"
pandas = "^2.2.2" pandas = "^2.2.2"
arq = "^0.25.0" arq = "^0.26.0"
openpyxl = "^3.1.2" openpyxl = "^3.1.3"
gunicorn = "^21.2.0" gunicorn = "^22.0.0"
[tool.poetry.group.dev.dependencies] [tool.poetry.group.dev.dependencies]
pre-commit = "^3.7.0" pre-commit = "^3.7.1"
mypy = "^1.9.0" mypy = "^1.10.0"
types-python-jose = "^3.3.4.8" types-python-jose = "^3.3.4.20240106"
ruff = "^0.3.7" ruff = "^0.4.6"
bandit = "^1.7.8" bandit = "^1.7.8"
# safety = "^3.0.1" # safety = "^3.2.0"
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]