Skip to content

Commit

Permalink
Merge pull request #249 from asottile/min-py-version
Browse files Browse the repository at this point in the history
update --min-py-version to 3.9
  • Loading branch information
asottile authored Oct 11, 2024
2 parents 0b6470e + ea85ee9 commit e8522f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion setup_cfg_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -517,7 +517,7 @@ def main(argv: Sequence[str] | None = None) -> int:
'--min-py3-version', type=_ver_type, default=None,
help=argparse.SUPPRESS,
)
parser.add_argument('--min-py-version', type=_ver_type, default=(3, 8))
parser.add_argument('--min-py-version', type=_ver_type, default=(3, 9))
parser.add_argument('--max-py-version', type=_ver_type, default=(3, 13))
args = parser.parse_args(argv)

Expand Down

0 comments on commit e8522f4

Please sign in to comment.