Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
545e856
Merge pull request #504 from AzureAD/release-1.20.0
rayluo Oct 7, 2022
8aecacb
Test matrix covers Python 3.11
rayluo Nov 2, 2022
0861aba
Merge pull request #512 from AzureAD/test-for-py3.11
rayluo Nov 3, 2022
2c79aab
Switch to new region endpoints
rayluo Nov 14, 2022
42fc402
Merge pull request #513 from AzureAD/new-region-endpoint
rayluo Nov 15, 2022
8805f00
Test only Python versions available on github's ubuntu 22.04
rayluo Dec 8, 2022
25c894d
Merge branch 'update-ci' into dev
rayluo Dec 8, 2022
600c110
Cleaner skip declaration
rayluo Dec 9, 2022
c339ec3
Merge branch 'refactor-e2e' into dev
rayluo Dec 9, 2022
cff23ee
Fallback to expires_on when expires_in is absent
rayluo Dec 8, 2022
2cb18f2
Merge pull request #519 from AzureAD/support_expires_on
rayluo Dec 9, 2022
e2c079b
Show lab api error, useful when trying api params
rayluo Jan 21, 2023
0972684
Merge branch 'lab-api-refactor' into dev
rayluo Jan 21, 2023
a08dd9e
Clarify when (not) to read API section
rayluo Oct 21, 2022
20667dc
Use broker for SSH Cert feature
rayluo Nov 10, 2022
48954fc
Merge pull request #515 from AzureAD/enable-msalruntime-for-ssh-cert
rayluo Jan 26, 2023
94561cd
Allow using client_id as scope. Needed by B2C.
rayluo Jan 27, 2023
405b4b8
Merge pull request #530 from AzureAD/allow-client_id-as-scope
rayluo Jan 30, 2023
0081f30
Bump PyMsalRuntime to 0.13.2+
rayluo Jan 30, 2023
93dcc8e
Merge branch 'use-pymsalruntime-0.13.2' into dev
rayluo Jan 31, 2023
b8ff2e4
MSAL Python 1.21.0
rayluo Jan 31, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Bump PyMsalRuntime to 0.13.2+
  • Loading branch information
rayluo committed Jan 30, 2023
commit 0081f3085782d69472e2ad030e45f9fb0903f4b9
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,9 @@
# The broker is defined as optional dependency,
# so that downstream apps can opt in. The opt-in is needed, partially because
# most existing MSAL Python apps do not have the redirect_uri needed by broker.
"pymsalruntime>=0.11.2,<0.14;python_version>='3.6' and platform_system=='Windows'",
# MSAL Python uses a subset of API from PyMsalRuntime 0.11.2+,
# but we still bump the lower bound to 0.13.2+ for its important bugfix (https://github.com/AzureAD/microsoft-authentication-library-for-cpp/pull/3244)
"pymsalruntime>=0.13.2,<0.14;python_version>='3.6' and platform_system=='Windows'",
],
},
)
Expand Down