Skip to content

Commit 171d67a

Browse files
authored
Merge pull request #75 from AzureAD/release-0.5.1
Release 0.5.1
2 parents 9638797 + c4dc10f commit 171d67a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

msal/application.py

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

1919

2020
# The __init__.py will import this. Not the other way around.
21-
__version__ = "0.5.0"
21+
__version__ = "0.5.1"
2222

2323
logger = logging.getLogger(__name__)
2424

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,10 @@
6767
'Operating System :: OS Independent',
6868
],
6969
packages=find_packages(exclude=["tests"]),
70-
data_files=[('', ['LICENSE'])],
70+
package_data={'': ['LICENSE']}, # Do not use data_files=[...],
71+
# which would cause the LICENSE being copied to /usr/local,
72+
# and tend to fail because of insufficient permission.
73+
# See https://stackoverflow.com/a/14211600/728675 for more detail
7174
install_requires=[
7275
'requests>=2.0.0,<3',
7376
'PyJWT[crypto]>=1.0.0,<2',

0 commit comments

Comments
 (0)