Skip to content

Commit 2d03ad9

Browse files
committed
MSAL Python 1.28.0
broker-test.py shall test Azure CLI in MSA-PT mode
1 parent e06ca87 commit 2d03ad9

File tree

2 files changed

+5
-8
lines changed

2 files changed

+5
-8
lines changed

msal/application.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525

2626

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

3030
logger = logging.getLogger(__name__)
3131
_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"

setup.cfg

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Format https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
22

33
[bdist_wheel]
4-
universal=1
4+
universal=0
55

66
[metadata]
77
name = msal
@@ -16,11 +16,8 @@ url = https://github.com/AzureAD/microsoft-authentication-library-for-python
1616
classifiers =
1717
Development Status :: 5 - Production/Stable
1818
Programming Language :: Python
19-
Programming Language :: Python :: 2
20-
Programming Language :: Python :: 2.7
19+
Programming Language :: Python :: 3 :: Only
2120
Programming Language :: Python :: 3
22-
Programming Language :: Python :: 3.5
23-
Programming Language :: Python :: 3.6
2421
Programming Language :: Python :: 3.7
2522
Programming Language :: Python :: 3.8
2623
Programming Language :: Python :: 3.9
@@ -40,7 +37,8 @@ project_urls =
4037
[options]
4138
include_package_data = False # We used to ship LICENSE, but our __init__.py already mentions MIT
4239
packages = find:
43-
python_requires = >=2.7
40+
# Our test pipeline currently still covers Py37
41+
python_requires = >=3.7
4442
install_requires =
4543
requests>=2.0.0,<3
4644

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

59-
mock; python_version<'3.3'
6057

6158
[options.extras_require]
6259
broker =

0 commit comments

Comments
 (0)