Change default for Python version from 3.8 to 3.9 (#13896)

Co-authored-by: Micha Reiser <micha@reiser.io>
This commit is contained in:
yataka 2024-11-18 22:29:27 +09:00 committed by Micha Reiser
parent afeb217452
commit 1b180c8342
123 changed files with 90 additions and 5488 deletions

View file

@ -42,10 +42,10 @@ use crate::{display_settings, fs};
#[cfg_attr(feature = "schemars", derive(schemars::JsonSchema))]
pub enum PythonVersion {
Py37,
Py38,
// Make sure to also change the default for `ruff_python_formatter::PythonVersion`
// when changing the default here.
#[default]
Py38,
Py39,
Py310,
Py311,