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

View File

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

View File

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