@@ -7,7 +7,12 @@ maintainers = [{ name = "Litestar Developers", email = "
[email protected] " }]
7
7
name = " sqlspec"
8
8
readme = " README.md"
9
9
requires-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"
11
16
12
17
[project .optional-dependencies ]
13
18
adbc = [" adbc_driver_manager" , " pyarrow" ]
@@ -249,6 +254,10 @@ module = [
249
254
" pyarrow.*" ,
250
255
]
251
256
257
+ [[tool .mypy .overrides ]]
258
+ disable_error_code = " ignore-without-code"
259
+ module = " sqlspec.extensions.litestar.providers"
260
+
252
261
[tool .pyright ]
253
262
disableBytesTypePromotions = true
254
263
exclude = [" **/node_modules" , " **/__pycache__" , " .venv" , " tools" , " docs" ]
@@ -260,6 +269,8 @@ reportPrivateUsage = false
260
269
reportUnknownArgumentType = false
261
270
reportUnknownMemberType = false
262
271
reportUnknownVariableType = false
272
+ reportUnnecessaryComparison = false
273
+ reportUnnecessaryIsInstance = false
263
274
reportUnnecessaryTypeIgnoreComments = true
264
275
root = " ."
265
276
@@ -318,7 +329,13 @@ select = ["ALL"]
318
329
convention = " google"
319
330
320
331
[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
322
339
323
340
[tool .ruff .lint .pep8-naming ]
324
341
classmethod-decorators = [" classmethod" ]
0 commit comments