mirror of
https://github.com/AtsushiSakai/PythonRobotics.git
synced 2026-01-09 04:18:04 -05:00
* 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.
19 lines
283 B
TOML
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"
|