Skip to content

Commit 085c1fb

Browse files
committed
Update ruff.toml and noxfile to run on 3.10
1 parent 790e71a commit 085c1fb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.ruff.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
line-length = 80 # Google Style Guide §3.2: 80 columns
1010
indent-width = 4 # Google Style Guide §3.4: 4 spaces
1111

12-
target-version = "py313" # Minimum Python version
12+
target-version = "py310" # Minimum Python version
1313

1414
[lint]
1515
ignore = [

noxfile.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
import nox
2424

2525

26-
DEFAULT_PYTHON_VERSION = '3.13'
26+
DEFAULT_PYTHON_VERSION = '3.10'
2727

2828
CURRENT_DIRECTORY = pathlib.Path(__file__).parent.absolute()
2929

@@ -127,7 +127,7 @@ def format(session):
127127
session.run(
128128
'pyupgrade',
129129
'--exit-zero-even-if-changed',
130-
'--py313-plus',
130+
'--py310-plus',
131131
*lint_paths_py,
132132
)
133133
session.run(

0 commit comments

Comments
 (0)