File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1968,7 +1968,7 @@ def __init__(
19681968 if your app is expected to run on Linux, especially WSL
19691969
19701970 2. installed broker dependency,
1971- e.g. ``pip install msal[broker]>=1.32 ,<2``.
1971+ e.g. ``pip install msal[broker]>=1.33 ,<2``.
19721972
19731973 3. tested with ``acquire_token_interactive()`` and ``acquire_token_silent()``.
19741974
@@ -2011,13 +2011,13 @@ def __init__(
20112011 This setting is only effective if your app is running on Linux.
20122012 This parameter defaults to None, which means MSAL will not utilize a broker.
20132013
2014- New in MSAL Python 1.32 .0.
2014+ New in MSAL Python 1.33 .0.
20152015
20162016 :param boolean enable_broker_on_wsl:
20172017 This setting is only effective if your app is running on WSL.
20182018 This parameter defaults to None, which means MSAL will not utilize a broker.
20192019
2020- New in MSAL Python 1.32 .0.
2020+ New in MSAL Python 1.33 .0.
20212021 """
20222022 if client_credential is not None :
20232023 raise ValueError ("Public Client should not possess credentials" )
Original file line number Diff line number Diff line change 2727 min_ver = {
2828 "win32" : "1.20" ,
2929 "darwin" : "1.31" ,
30- "linux" : "1.32 " ,
30+ "linux" : "1.33 " ,
3131 }.get (sys .platform )
3232 if min_ver :
3333 raise ImportError (
You can’t perform that action at this time.
0 commit comments