-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #109 from AzureAD/release-1.0.0
MSAL EX Python 1.0.0
- Loading branch information
Showing
13 changed files
with
144 additions
and
136 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,13 @@ | ||
"""Provides auxiliary functionality to the `msal` package.""" | ||
__version__ = "0.3.1" | ||
|
||
import sys | ||
__version__ = "1.0.0" | ||
|
||
from .persistence import ( | ||
FilePersistence, | ||
build_encrypted_persistence, | ||
FilePersistenceWithDataProtection, | ||
KeychainPersistence, | ||
LibsecretPersistence, | ||
) | ||
from .cache_lock import CrossPlatLock | ||
from .token_cache import PersistedTokenCache | ||
|
||
if sys.platform.startswith('win'): | ||
from .token_cache import WindowsTokenCache as TokenCache | ||
elif sys.platform.startswith('darwin'): | ||
from .token_cache import OSXTokenCache as TokenCache | ||
else: | ||
from .token_cache import FileTokenCache as TokenCache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.