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

@ -322,8 +322,8 @@ pub struct Options {
/// file than it would for an equivalent runtime file with the same target
/// version.
#[option(
default = r#""py38""#,
value_type = r#""py37" | "py38" | "py39" | "py310" | "py311" | "py312""#,
default = r#""py39""#,
value_type = r#""py37" | "py38" | "py39" | "py310" | "py311" | "py312" | "py313""#,
example = r#"
# Always generate Python 3.7-compatible code.
target-version = "py37"