You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# You may opt in to use broker. See also: https://docs.microsoft.com/en-us/azure/active-directory/develop/scenario-desktop-acquire-token-wam#wam-value-proposition
40
42
#enable_broker_on_windows=True, # Opted in. You will be guided to meet the prerequisites, if your app hasn't already
41
-
# See also: https://docs.microsoft.com/en-us/azure/active-directory/develop/scenario-desktop-acquire-token-wam#wam-value-proposition
43
+
#enable_broker_on_mac=True, # Opted in. You will be guided to meet the prerequisites, if your app hasn't already
44
+
42
45
token_cache=global_token_cache, # Let this app (re)use an existing token cache.
43
46
# If absent, ClientApplication will create its own empty token cache
Copy file name to clipboardExpand all lines: setup.cfg
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -63,9 +63,9 @@ broker =
63
63
# The broker is defined as optional dependency,
64
64
# so that downstream apps can opt in. The opt-in is needed, partially because
65
65
# most existing MSAL Python apps do not have the redirect_uri needed by broker.
66
-
#MSAL Python uses a subset of API from PyMsalRuntime 0.13.0+,
67
-
# but we still bump the lower bound to 0.13.2+ for its important bugfix (https://github.com/AzureAD/microsoft-authentication-library-for-cpp/pull/3244)
68
-
pymsalruntime>=0.13.2,<0.14; python_version>='3.6' and platform_system=='Windows'
66
+
#We need pymsalruntime.CallbackData introduced in PyMsalRuntime 0.14
67
+
pymsalruntime>=0.14,<0.15; python_version>='3.6' and platform_system=='Windows'
68
+
pymsalruntime>=0.14,<0.15; python_version>='3.8' and platform_system=='Darwin'
0 commit comments