fix: correct python_version and target-version in tool configs

- Set mypy python_version back to 3.10 (was incorrectly set to 0.0.13)
- Set ruff target-version back to py310 (was incorrectly set to 0.0.13)

These fields should contain Python versions, not package versions.
This commit is contained in:
Lina Tawfik 2025-06-27 18:19:46 -07:00
parent 91774ccd34
commit 6b3d69d6f0
No known key found for this signature in database

View file

@ -66,7 +66,7 @@ addopts = [
asyncio_mode = "auto"
[tool.mypy]
python_version = "0.0.13"
python_version = "3.10"
strict = true
warn_return_any = true
warn_unused_configs = true
@ -82,7 +82,7 @@ warn_unreachable = true
strict_equality = true
[tool.ruff]
target-version = "0.0.13"
target-version = "py310"
line-length = 88
[tool.ruff.lint]