mirror of
https://github.com/anthropics/claude-code-sdk-python.git
synced 2025-07-07 14:45:00 +00:00
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:
parent
91774ccd34
commit
6b3d69d6f0
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ addopts = [
|
||||||
asyncio_mode = "auto"
|
asyncio_mode = "auto"
|
||||||
|
|
||||||
[tool.mypy]
|
[tool.mypy]
|
||||||
python_version = "0.0.13"
|
python_version = "3.10"
|
||||||
strict = true
|
strict = true
|
||||||
warn_return_any = true
|
warn_return_any = true
|
||||||
warn_unused_configs = true
|
warn_unused_configs = true
|
||||||
|
@ -82,7 +82,7 @@ warn_unreachable = true
|
||||||
strict_equality = true
|
strict_equality = true
|
||||||
|
|
||||||
[tool.ruff]
|
[tool.ruff]
|
||||||
target-version = "0.0.13"
|
target-version = "py310"
|
||||||
line-length = 88
|
line-length = 88
|
||||||
|
|
||||||
[tool.ruff.lint]
|
[tool.ruff.lint]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue