File tree Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Expand file tree Collapse file tree 2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 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
3030logger = logging .getLogger (__name__ )
3131_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"
Original file line number Diff line number Diff line change 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]
77name = msal
@@ -16,11 +16,8 @@ url = https://github.com/AzureAD/microsoft-authentication-library-for-python
1616classifiers =
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]
4138include_package_data = False # We used to ship LICENSE, but our __init__.py already mentions MIT
4239packages = find:
43- python_requires = >=2.7
40+ # Our test pipeline currently still covers Py37
41+ python_requires = >=3.7
4442install_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]
6259broker =
You can’t perform that action at this time.
0 commit comments