From 2d03ad97c5ef865b8d9d1a79b61fb08d6fbdea29 Mon Sep 17 00:00:00 2001 From: Ray Luo Date: Tue, 12 Mar 2024 21:57:14 -0700 Subject: [PATCH] MSAL Python 1.28.0 broker-test.py shall test Azure CLI in MSA-PT mode --- msal/application.py | 2 +- setup.cfg | 11 ++++------- 2 files changed, 5 insertions(+), 8 deletions(-) diff --git a/msal/application.py b/msal/application.py index d6256635..6d5fb3ad 100644 --- a/msal/application.py +++ b/msal/application.py @@ -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" diff --git a/setup.cfg b/setup.cfg index 2177d2c5..f6b86519 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,7 +1,7 @@ # Format https://setuptools.pypa.io/en/latest/userguide/declarative_config.html [bdist_wheel] -universal=1 +universal=0 [metadata] name = msal @@ -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 @@ -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 @@ -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 =