Skip to content

Commit 88286ac

Browse files
committed
Require Python 3.13+
Signed-off-by: Benjamin Gilbert <bgilbert@cs.cmu.edu>
1 parent 602ac6b commit 88286ac

2 files changed

Lines changed: 3 additions & 2 deletions

File tree

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ repos:
1919
hooks:
2020
- id: pyupgrade
2121
name: Modernize Python code
22-
args: ["--py312-plus"]
22+
args: ["--py313-plus"]
2323

2424
- repo: https://github.com/PyCQA/isort
2525
rev: 5.13.2

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[tool.black]
22
line-length = 79
33
skip-string-normalization = true
4-
target-version = ["py312"]
4+
target-version = ["py313"]
55

66
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
77
# requires Flake8-pyproject
@@ -14,4 +14,5 @@ force_sort_within_sections = true
1414

1515
[tool.mypy]
1616
namespace_packages = false
17+
python_version = "3.13"
1718
strict = true

0 commit comments

Comments
 (0)