File tree 2 files changed +5
-8
lines changed
2 files changed +5
-8
lines changed Original file line number Diff line number Diff line change 25
25
26
26
27
27
# 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
29
29
30
30
logger = logging .getLogger (__name__ )
31
31
_AUTHORITY_TYPE_CLOUDSHELL = "CLOUDSHELL"
Original file line number Diff line number Diff line change 1
1
# Format https://setuptools.pypa.io/en/latest/userguide/declarative_config.html
2
2
3
3
[bdist_wheel]
4
- universal =1
4
+ universal =0
5
5
6
6
[metadata]
7
7
name = msal
@@ -16,11 +16,8 @@ url = https://github.com/AzureAD/microsoft-authentication-library-for-python
16
16
classifiers =
17
17
Development Status :: 5 - Production/Stable
18
18
Programming Language :: Python
19
- Programming Language :: Python :: 2
20
- Programming Language :: Python :: 2.7
19
+ Programming Language :: Python :: 3 :: Only
21
20
Programming Language :: Python :: 3
22
- Programming Language :: Python :: 3.5
23
- Programming Language :: Python :: 3.6
24
21
Programming Language :: Python :: 3.7
25
22
Programming Language :: Python :: 3.8
26
23
Programming Language :: Python :: 3.9
@@ -40,7 +37,8 @@ project_urls =
40
37
[options]
41
38
include_package_data = False # We used to ship LICENSE, but our __init__.py already mentions MIT
42
39
packages = find:
43
- python_requires = >=2.7
40
+ # Our test pipeline currently still covers Py37
41
+ python_requires = >=3.7
44
42
install_requires =
45
43
requests>=2.0.0,<3
46
44
@@ -56,7 +54,6 @@ install_requires =
56
54
# https://cryptography.io/en/latest/api-stability/#deprecation
57
55
cryptography>=0.6,<45
58
56
59
- mock; python_version<'3.3'
60
57
61
58
[options.extras_require]
62
59
broker =
You can’t perform that action at this time.
0 commit comments