Skip to content

Commit

Permalink
MSAL Python 1.28.0
Browse files Browse the repository at this point in the history
broker-test.py shall test Azure CLI in MSA-PT mode
  • Loading branch information
rayluo committed Mar 19, 2024
1 parent e06ca87 commit 2d03ad9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
2 changes: 1 addition & 1 deletion msal/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@


# The __init__.py will import this. Not the other way around.
__version__ = "1.27.0" # When releasing, also check and bump our dependencies's versions if needed
__version__ = "1.28.0" # When releasing, also check and bump our dependencies's versions if needed

logger = logging.getLogger(__name__)
_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"
Expand Down
11 changes: 4 additions & 7 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Format https://setuptools.pypa.io/en/latest/userguide/declarative_config.html

[bdist_wheel]
universal=1
universal=0

[metadata]
name = msal
Expand All @@ -16,11 +16,8 @@ url = https://github.com/AzureAD/microsoft-authentication-library-for-python
classifiers =
Development Status :: 5 - Production/Stable
Programming Language :: Python
Programming Language :: Python :: 2
Programming Language :: Python :: 2.7
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3
Programming Language :: Python :: 3.5
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Expand All @@ -40,7 +37,8 @@ project_urls =
[options]
include_package_data = False # We used to ship LICENSE, but our __init__.py already mentions MIT
packages = find:
python_requires = >=2.7
# Our test pipeline currently still covers Py37
python_requires = >=3.7
install_requires =
requests>=2.0.0,<3

Expand All @@ -56,7 +54,6 @@ install_requires =
# https://cryptography.io/en/latest/api-stability/#deprecation
cryptography>=0.6,<45

mock; python_version<'3.3'

[options.extras_require]
broker =
Expand Down

0 comments on commit 2d03ad9

Please sign in to comment.