Skip to content

Commit f31d9a0

Browse files
committed
Bump up msal py version to 1.33
1 parent e25ef34 commit f31d9a0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

msal/application.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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")

msal/broker.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
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(

0 commit comments

Comments
 (0)