Skip to content

Commit 31e701c

Browse files
authored
{Packaging} Only install pymsalruntime on Windows (#31617)
1 parent 395b241 commit 31e701c

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

src/azure-cli-core/setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
'knack~=0.11.0',
5555
'microsoft-security-utilities-secret-masker~=1.0.0b4',
5656
'msal-extensions==1.2.0',
57-
'msal[broker]==1.33.0b1',
57+
'msal[broker]==1.33.0b1; sys_platform == "win32"',
58+
'msal==1.33.0b1; sys_platform != "win32"',
5859
'msrestazure~=0.6.4',
5960
'packaging>=20.9',
6061
'pkginfo>=1.5.0.1',

src/azure-cli/requirements.py3.Darwin.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jmespath==0.9.5
104104
jsondiff==2.0.0
105105
knack==0.11.0
106106
msal-extensions==1.2.0
107-
msal[broker]==1.33.0b1
107+
msal==1.33.0b1
108108
msrest==0.7.1
109109
msrestazure==0.6.4
110110
oauthlib==3.2.2

src/azure-cli/requirements.py3.Linux.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jmespath==0.9.5
105105
jsondiff==2.0.0
106106
knack==0.11.0
107107
msal-extensions==1.2.0
108-
msal[broker]==1.33.0b1
108+
msal==1.33.0b1
109109
msrest==0.7.1
110110
msrestazure==0.6.4
111111
oauthlib==3.2.2

0 commit comments

Comments
 (0)