refactor: simplify postgresql env vars

This commit is contained in:
Jakub Miazek
2024-03-24 18:19:19 +01:00
parent f7abc9f3b7
commit 7e34800d78
7 changed files with 47 additions and 70 deletions

View File

@@ -1,13 +1,13 @@
[tool.poetry]
name = "fastapi-sqlalchemy-asyncpg"
version = "0.0.8"
version = "0.0.9"
description = ""
authors = ["Jakub Miazek <the@grillazz.com>"]
packages = []
license = "MIT"
[tool.poetry.dependencies]
python = "^3.11"
python = "^3.12"
fastapi = "0.110.0"
pydantic = {version = "2.6.4", extras = ["email"]}
pydantic-settings = "2.2.1"
@@ -54,8 +54,8 @@ ignore = ["E501"]
# Exclude a variety of commonly ignored directories.
exclude = ["alembic",]
# Assume Python 3.10.
target-version = "py311"
# Assume Python 3.11.
target-version = "py312"
[tool.ruff.flake8-quotes]
docstring-quotes = "double"