Files
PythonRobotics/ruff.toml
Atsushi Sakai a2c42c3d68 Update Python version to 3.13 across the project (#1208)
* Update Python version to 3.13 across the project

Upgraded the required Python version to 3.13 in configurations, CI workflows, documentation, and environment files. This ensures compatibility with the latest Python release and maintains consistency across all project components.

* Update Python version to 3.13 across the project

Upgraded the required Python version to 3.13 in configurations, CI workflows, documentation, and environment files. This ensures compatibility with the latest Python release and maintains consistency across all project components.
2025-05-01 21:53:12 +09:00

19 lines
283 B
TOML

line-length = 88
select = ["F", "E", "W", "UP"]
ignore = ["E501", "E741", "E402"]
exclude = [
]
# Assume Python 3.13
target-version = "py313"
[per-file-ignores]
[mccabe]
# Unlike Flake8, default to a complexity level of 10.
max-complexity = 10
[pydocstyle]
convention = "numpy"