Skip to content

Commit 2c02595

Browse files
authored
Merge pull request #668 from iamneha/adal
Fix: Make dependancy adal optional
2 parents 67d30a0 + 3d12555 commit 2c02595

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

requirements.txt

-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,3 @@ ipaddress>=1.0.17;python_version=="2.7" # PSF
99
websocket-client>=0.32.0,!=0.40.0,!=0.41.*,!=0.42.* # LGPLv2+
1010
requests # Apache-2.0
1111
requests-oauthlib # ISC
12-
adal>=1.0.2 # MIT

setup.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@
2727
# prerequisite: setuptools
2828
# http://pypi.python.org/pypi/setuptools
2929

30-
EXTRAS = {}
30+
EXTRAS = {
31+
'adal': ['adal>=1.0.2']
32+
}
3133
REQUIRES = []
3234
with open('requirements.txt') as f:
3335
for line in f:

0 commit comments

Comments
 (0)