We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 790e71a commit 085c1fbCopy full SHA for 085c1fb
.ruff.toml
@@ -9,7 +9,7 @@
9
line-length = 80 # Google Style Guide §3.2: 80 columns
10
indent-width = 4 # Google Style Guide §3.4: 4 spaces
11
12
-target-version = "py313" # Minimum Python version
+target-version = "py310" # Minimum Python version
13
14
[lint]
15
ignore = [
noxfile.py
@@ -23,7 +23,7 @@
23
import nox
24
25
26
-DEFAULT_PYTHON_VERSION = '3.13'
+DEFAULT_PYTHON_VERSION = '3.10'
27
28
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
29
@@ -127,7 +127,7 @@ def format(session):
127
session.run(
128
'pyupgrade',
129
'--exit-zero-even-if-changed',
130
- '--py313-plus',
+ '--py310-plus',
131
*lint_paths_py,
132
)
133
0 commit comments