We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 602ac6b commit 88286acCopy full SHA for 88286ac
2 files changed
.pre-commit-config.yaml
@@ -19,7 +19,7 @@ repos:
19
hooks:
20
- id: pyupgrade
21
name: Modernize Python code
22
- args: ["--py312-plus"]
+ args: ["--py313-plus"]
23
24
- repo: https://github.com/PyCQA/isort
25
rev: 5.13.2
pyproject.toml
@@ -1,7 +1,7 @@
1
[tool.black]
2
line-length = 79
3
skip-string-normalization = true
4
-target-version = ["py312"]
+target-version = ["py313"]
5
6
# https://black.readthedocs.io/en/stable/guides/using_black_with_other_tools.html#flake8
7
# requires Flake8-pyproject
@@ -14,4 +14,5 @@ force_sort_within_sections = true
14
15
[tool.mypy]
16
namespace_packages = false
17
+python_version = "3.13"
18
strict = true
0 commit comments