@@ -6,7 +6,7 @@ authors = [
66 { name = " Gel Contributors" },
77]
88version = " 1.0.0"
9- requires-python = " >=3.11 .0"
9+ requires-python = " >=3.10 .0"
1010readme = " README.rst"
1111license = { text = " Apache License, Version 2.0" }
1212keywords = [" gel" , " edgedb" , " database" , " test" ]
@@ -64,7 +64,7 @@ exclude = [
6464 " ^target" ,
6565]
6666files = [" src/**/*.py" ]
67- python_version = " 3.11 "
67+ python_version = " 3.10 "
6868follow_imports = " normal"
6969strict = true
7070ignore_errors = false
@@ -77,15 +77,15 @@ local_partial_types = true
7777
7878[tool .pyright ]
7979include = [" src/**" ]
80- pythonVersion = " 3.11 "
80+ pythonVersion = " 3.10 "
8181typeCheckingMode = " standard"
8282
8383# ========================
8484# BLACK
8585# ========================
8686[tool .black ]
8787line-length = 79
88- target-version = [" py311 " ]
88+ target-version = [" py310 " ]
8989
9090# ========================
9191# RUFF
@@ -94,7 +94,7 @@ target-version = ["py311"]
9494[tool .ruff ]
9595line-length = 79
9696indent-width = 4
97- target-version = " py311 "
97+ target-version = " py310 "
9898exclude = [" .github" , " .git" , " build" , " dist" , " .eggs" ]
9999
100100[tool .ruff .lint ]
@@ -156,4 +156,5 @@ extend-ignore = [
156156 " SIM117" , # multiple-with-statements
157157 " UP045" , # non-pep604-annotation-optional
158158 " PLR5501" , # collapsible-else-if
159+ " PERF203" # try-except-in-loop
159160]
0 commit comments