canonical-hw-cert team mailing list archive
-
canonical-hw-cert team
-
Mailing list archive
-
Message #127454
[Merge] ~kevinyeh/cc-lab-manager:fix-python-package-issue into cc-lab-manager:master
Kevin Yeh has proposed merging ~kevinyeh/cc-lab-manager:fix-python-package-issue into cc-lab-manager:master.
Commit message:
Update: fix version for google-auth since latest version of google-auth cause some issues.
Requested reviews:
Canonical Hardware Certification (canonical-hw-cert)
For more details, see:
https://code.launchpad.net/~kevinyeh/cc-lab-manager/+git/cc-lab-manager/+merge/445501
--
Your team Canonical Hardware Certification is requested to review the proposed merge of ~kevinyeh/cc-lab-manager:fix-python-package-issue into cc-lab-manager:master.
diff --git a/setup.py b/setup.py
index 0bb1ec1..15c7ce4 100644
--- a/setup.py
+++ b/setup.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
-INSTALL_REQUIRES = ['pygsheets', 'jinja2', 'python-libmaas', 'aiohttp==3.7.2']
+INSTALL_REQUIRES = ['google-auth==2.21.0', 'pygsheets', 'jinja2', 'python-libmaas', 'aiohttp==3.7.2']
setup(
name='cc-lab-manager',