@@ -7,7 +7,12 @@ maintainers = [{ name = "Litestar Developers", email = "
[email protected] " }]
77name = " sqlspec"
88readme = " README.md"
99requires-python = " >=3.9, <4.0"
10- version = " 0.10.1"
10+ version = " 0.11.0"
11+
12+ [project .urls ]
13+ Discord = " https://discord.gg/litestar"
14+ Issue = " https://github.com/litestar-org/sqlspec/issues/"
15+ Source = " https://github.com/litestar-org/sqlspec"
1116
1217[project .optional-dependencies ]
1318adbc = [" adbc_driver_manager" , " pyarrow" ]
@@ -249,6 +254,10 @@ module = [
249254 " pyarrow.*" ,
250255]
251256
257+ [[tool .mypy .overrides ]]
258+ disable_error_code = " ignore-without-code"
259+ module = " sqlspec.extensions.litestar.providers"
260+
252261[tool .pyright ]
253262disableBytesTypePromotions = true
254263exclude = [" **/node_modules" , " **/__pycache__" , " .venv" , " tools" , " docs" ]
@@ -260,6 +269,8 @@ reportPrivateUsage = false
260269reportUnknownArgumentType = false
261270reportUnknownMemberType = false
262271reportUnknownVariableType = false
272+ reportUnnecessaryComparison = false
273+ reportUnnecessaryIsInstance = false
263274reportUnnecessaryTypeIgnoreComments = true
264275root = " ."
265276
@@ -318,7 +329,13 @@ select = ["ALL"]
318329convention = " google"
319330
320331[tool .ruff .lint .mccabe ]
321- max-complexity = 18
332+ max-complexity = 25
333+
334+ [tool .ruff .lint .pylint ]
335+ max-bool-expr = 10
336+ max-branches = 20
337+ max-locals = 20
338+ max-returns = 15
322339
323340[tool .ruff .lint .pep8-naming ]
324341classmethod-decorators = [" classmethod" ]
0 commit comments