Skip to content

Commit edf77b4

Browse files
committed
update version number
1 parent d2fc35f commit edf77b4

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

msal/application.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323

2424
# The __init__.py will import this. Not the other way around.
25-
__version__ = "1.31.0" # When releasing, also check and bump our dependencies's versions if needed
25+
__version__ = "1.32.0" # When releasing, also check and bump our dependencies's versions if needed
2626

2727
logger = logging.getLogger(__name__)
2828
_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"
@@ -1994,17 +1994,19 @@ def __init__(self, client_id, client_credential=None, **kwargs):
19941994
:param boolean enable_broker_on_linux:
19951995
This setting is only effective if your app is running on Linux.
19961996
This parameter defaults to None, which means MSAL will not utilize a broker.
1997-
1997+
19981998
New in MSAL Python 1.32.0.
19991999
"""
20002000
if client_credential is not None:
20012001
raise ValueError("Public Client should not possess credentials")
20022002
# Using kwargs notation for now. We will switch to keyword-only arguments.
20032003
enable_broker_on_windows = kwargs.pop("enable_broker_on_windows", False)
20042004
enable_broker_on_mac = kwargs.pop("enable_broker_on_mac", False)
2005+
enable_broker_on_linux = kwargs.pop("enable_broker_on_linux", False)
20052006
self._enable_broker = bool(
20062007
enable_broker_on_windows and sys.platform == "win32"
2007-
or enable_broker_on_mac and sys.platform == "darwin")
2008+
or enable_broker_on_mac and sys.platform == "darwin"
2009+
or enable_broker_on_linux and sys.platform == "linux")
20082010
super(PublicClientApplication, self).__init__(
20092011
client_id, client_credential=None, **kwargs)
20102012

0 commit comments

Comments
 (0)