upgrades
All checks were successful
deploy / deploy (push) Successful in 1m10s

This commit is contained in:
2023-12-18 01:20:13 +03:00
parent 693d8b6aee
commit 7fa6fcf2d7
7 changed files with 72 additions and 44 deletions

View File

@@ -13,18 +13,20 @@ python = "^3.12"
SQLAlchemy = "^2.0.22"
psycopg2-binary = "^2.9.9"
redis = {extras = ["hiredis"], version = "^5.0.1"}
uvicorn = "^0.24.0.post1"
strawberry-graphql = {extras = ["asgi", "debug-server"], version = "^0.215.1" }
uvicorn = "^0.24.0"
strawberry-graphql = {extras = ["asgi", "debug-server"], version = "^0.216.1" }
strawberry-sqlalchemy-mapper = "^0.4.0"
sentry-sdk = "^1.37.1"
strawberry-sqlalchemy-mapper = "^0.3.1"
aiohttp = "^3.9.1"
[tool.poetry.dev-dependencies]
[tool.poetry.group.dev.dependencies]
setuptools = "^69.0.2"
pytest = "^7.4.2"
black = { version = "^23.12.0", python = ">=3.12" }
ruff = { version = "^0.1.8", python = ">=3.12" }
mypy = { version = "^1.7", python = ">=3.12" }
setuptools = "^69.0.2"
isort = "^5.13.2"
pyright = "^1.1.341"
[tool.black]
line-length = 120
@@ -58,18 +60,33 @@ use_parentheses = true
ensure_newline_before_comments = true
line_length = 120
[tool.pyright]
venvPath = "."
venv = ".venv"
include = ["."]
exclude = ["**/__pycache__"]
ignore = []
defineConstant = { DEBUG = true }
reportMissingImports = true
reportMissingTypeStubs = false
pythonVersion = "312"
pythonPlatform = "Linux"
executionEnvironments = []
useLibraryCodeForTypes = true
disableLanguageServices = false
disableOrganizeImports = false
reportMissingImports = false
reportMissingModuleSource = "warning"
reportImportCycles = "warning"
maxMemoryForLargeFile = 4096
pythonVersion = "3.12"
autoImportCompletions = true
useVirtualEnv = true
typeCheckingMode = "basic"
disableJediCompletion = false
disableCompletion = false
disableSnippetCompletion = false
disableGoToDefinition = false
disableRenaming = false
disableSignatureHelp = false
diagnostics = true
logLevel = "Information"
pluginSearchPaths = []
typings = {}
mergeTypeStubPackages = false
[tool.mypy]
python_version = "3.12"