Skip to content

Commit 532815d

Browse files
committed
python 3.13
1 parent ee79a8c commit 532815d

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ omit= [
219219
]
220220

221221
[tool.ruff]
222-
target-version = "py312"
222+
target-version = "py313"
223223

224224
lint.select = [
225225
"B002", # Python does not support the unary prefix increment
@@ -306,6 +306,7 @@ lint.ignore = [
306306
"PLW2901", # Outer {outer_kind} variable {name} overwritten by inner {inner_kind} target
307307
"UP006", # keep type annotation style as is
308308
"UP007", # keep type annotation style as is
309+
"UP031"
309310
# Ignored due to performance: https://github.com/charliermarsh/ruff/issues/2923
310311
#"UP038", # Use `X | Y` in `isinstance` call instead of `(X, Y)`
311312
]

scripts/python-venv.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env bash
22
set -eu
33

4-
pyversions=(3.12 3.11)
4+
pyversions=( 3.13 )
55
my_path=$(git rev-parse --show-toplevel)
66
my_venv=${my_path}/venv
77

0 commit comments

Comments
 (0)