Skip to content

Commit 7daba7f

Browse files
committed
Made google-auth an optional dependency. Fixes kubernetes-client#2249
1 parent b7ccf17 commit 7daba7f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,8 @@
2828
# http://pypi.python.org/pypi/setuptools
2929

3030
EXTRAS = {
31-
'adal': ['adal>=1.0.2']
31+
'adal': ['adal>=1.0.2'],
32+
'google-auth': ['google-auth>=1.0.0'] # Google Auth is now optional
3233
}
3334
REQUIRES = []
3435
with open('requirements.txt') as f:

0 commit comments

Comments
 (0)