File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed
Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -219,7 +219,7 @@ omit= [
219219]
220220
221221[tool .ruff ]
222- target-version = " py312 "
222+ target-version = " py313 "
223223
224224lint.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]
Original file line number Diff line number Diff line change 11#! /usr/bin/env bash
22set -eu
33
4- pyversions=(3.12 3.11 )
4+ pyversions=( 3.13 )
55my_path=$( git rev-parse --show-toplevel)
66my_venv=${my_path} /venv
77
You can’t perform that action at this time.
0 commit comments