Skip to content
This repository was archived by the owner on Sep 29, 2023. It is now read-only.

Commit 2471809

Browse files
authored
Merge pull request #232 from AzureAD/release-1.2.4
ADAL Python 1.2.4
2 parents f840cac + 621a8fb commit 2471809

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

adal/__init__.py

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

2828
# pylint: disable=wrong-import-position
2929

30-
__version__ = '1.2.3'
30+
__version__ = '1.2.4'
3131

3232
import logging
3333

setup.cfg

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,5 @@
22
universal=1
33

44
[metadata]
5-
description-file = README.md
5+
long_description = file: README.md
6+
long_description_content_type = text/markdown

setup.py

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,18 @@
5252
setup(
5353
name='adal',
5454
version=__version__,
55-
description=('The ADAL for Python library makes it easy for python ' +
55+
description=('Note: This library is already replaced by MSAL Python, ' +
56+
'available here: https://pypi.org/project/msal/ .' +
57+
'ADAL Python remains available here as a legacy. ' +
58+
'The ADAL for Python library makes it easy for python ' +
5659
'application to authenticate to Azure Active Directory ' +
5760
'(AAD) in order to access AAD protected web resources.'),
5861
license='MIT',
5962
author='Microsoft Corporation',
6063
author_email='[email protected]',
6164
url='https://github.com/AzureAD/azure-activedirectory-library-for-python',
6265
classifiers=[
63-
'Development Status :: 3 - Alpha',
66+
'Development Status :: 6 - Mature',
6467
'Programming Language :: Python',
6568
'Programming Language :: Python :: 2',
6669
'Programming Language :: Python :: 2.7',

0 commit comments

Comments
 (0)