@@ -113,7 +113,7 @@ prod = [
113
113
114
114
# Install Python Social Auth
115
115
" social-auth-app-django" ,
116
- " social-auth-core[azuread,openidconnect,saml ]" ,
116
+ " social-auth-core[azuread]" , # https://github.com/python-social-auth/social-core/pull/1025
117
117
" python3-saml" ,
118
118
119
119
# For encrypting a login token to the desktop app
@@ -470,6 +470,7 @@ ignore = [
470
470
" E402" , # Module level import not at top of file
471
471
" E501" , # Line too long
472
472
" E731" , # Do not assign a lambda expression, use a def
473
+ " LOG015" , # `error()` call on root logger
473
474
" N802" , # Function name should be lowercase
474
475
" N806" , # Variable in function should be lowercase
475
476
" PERF203" , # `try`-`except` within a loop incurs performance overhead
@@ -506,6 +507,7 @@ ignore = [
506
507
" TC001" , # Move application import into a type-checking block
507
508
" TC002" , # Move third-party import into a type-checking block
508
509
" TC003" , # Move standard library import into a type-checking block
510
+ " TC006" , # Add quotes to type expression in `typing.cast()`
509
511
]
510
512
511
513
[tool .ruff .lint .flake8-bandit ]
0 commit comments