1
0
Fork 0
mirror of https://github.com/mealie-recipes/mealie.git synced 2025-08-06 14:05:21 +02:00

feat: Upgrade to Python 3.12 (#4675)

Co-authored-by: Hayden <64056131+hay-kot@users.noreply.github.com>
This commit is contained in:
Michael Genson 2024-12-04 22:31:26 -06:00 committed by GitHub
parent 0e6a40e210
commit 87504fbb05
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
43 changed files with 128 additions and 163 deletions

View file

@ -27,7 +27,7 @@ orjson = "^3.8.0"
psycopg2-binary = { version = "^2.9.1", optional = true }
pydantic = "^2.6.1"
pyhumps = "^3.5.3"
python = "^3.10"
python = "^3.12"
python-dateutil = "^2.8.2"
python-dotenv = "^1.0.0"
python-ldap = "^3.3.1"
@ -105,7 +105,7 @@ pgsql = ["psycopg2-binary"]
follow_imports = "skip"
ignore_missing_imports = true
plugins = "pydantic.mypy"
python_version = "3.10"
python_version = "3.12"
strict_optional = true
[tool.ruff]
@ -135,8 +135,8 @@ exclude = [
"venv",
]
# Assume Python 3.10.
target-version = "py310"
# Assume Python 3.12.
target-version = "py312"
[tool.ruff.lint]
# Enable Pyflakes `E` and `F` codes by default.