-
Notifications
You must be signed in to change notification settings - Fork 205
Enable broker support on Linux for WSL #766
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d2fc35f
edf77b4
3bf9111
caab447
aa5c74c
6f52d28
57d0005
e2cc47e
1965976
46713ac
2bab25c
7037231
dafe15f
89ef887
25832df
f2df4f8
3ca5fcf
790bc78
d719095
6806041
c429d2a
5c3ce72
bf7a937
adbca96
fd29c01
e25ef34
f31d9a0
e69bf25
dc85e58
7f3bf27
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -62,9 +62,11 @@ broker = | |
# most existing MSAL Python apps do not have the redirect_uri needed by broker. | ||
# | ||
# We need pymsalruntime.CallbackData introduced in PyMsalRuntime 0.14 | ||
pymsalruntime>=0.14,<0.18; python_version>='3.6' and platform_system=='Windows' | ||
pymsalruntime>=0.14,<0.19; python_version>='3.6' and platform_system=='Windows' | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I cannot use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. True. Please subscribe/watch this repo to receive its release notification. We aim for each of the Azure CLI code freeze (minus 2 weeks) as checkpoint. Until then, you would have to manually install from MSAL's |
||
# On Mac, PyMsalRuntime 0.17+ is expected to support SSH cert and ROPC | ||
pymsalruntime>=0.17,<0.18; python_version>='3.8' and platform_system=='Darwin' | ||
pymsalruntime>=0.17,<0.19; python_version>='3.8' and platform_system=='Darwin' | ||
# PyMsalRuntime 0.18+ is expected to support broker on Linux | ||
pymsalruntime>=0.18,<0.19; python_version>='3.8' and platform_system=='Linux' | ||
DharshanBJ marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
||
[options.packages.find] | ||
exclude = | ||
|
Uh oh!
There was an error while loading. Please reload this page.