Skip to content

Commit 512613e

Browse files
andersktimabbott
authored andcommittedMar 15, 2025
requirements: Upgrade Python requirements.
Signed-off-by: Anders Kaseorg <[email protected]>
1 parent 838ae38 commit 512613e

File tree

3 files changed

+712
-704
lines changed

3 files changed

+712
-704
lines changed
 

‎pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ prod = [
113113

114114
# Install Python Social Auth
115115
"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
117117
"python3-saml",
118118

119119
# For encrypting a login token to the desktop app
@@ -470,6 +470,7 @@ ignore = [
470470
"E402", # Module level import not at top of file
471471
"E501", # Line too long
472472
"E731", # Do not assign a lambda expression, use a def
473+
"LOG015", # `error()` call on root logger
473474
"N802", # Function name should be lowercase
474475
"N806", # Variable in function should be lowercase
475476
"PERF203", # `try`-`except` within a loop incurs performance overhead
@@ -506,6 +507,7 @@ ignore = [
506507
"TC001", # Move application import into a type-checking block
507508
"TC002", # Move third-party import into a type-checking block
508509
"TC003", # Move standard library import into a type-checking block
510+
"TC006", # Add quotes to type expression in `typing.cast()`
509511
]
510512

511513
[tool.ruff.lint.flake8-bandit]

‎uv.lock

+708-702
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@
4949
# historical commits sharing the same major version, in which case a
5050
# minor version bump suffices.
5151

52-
PROVISION_VERSION = (319, 1) # bumped 2025-03-14 to upgrade uv
52+
PROVISION_VERSION = (320, 0) # bumped 2025-03-14 to upgrade Python requirements

0 commit comments

Comments
 (0)
Please sign in to comment.