1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
From: Ilias Tsitsimpis <iliastsi@debian.org>
Date: Sun, 13 Dec 2020 16:21:33 +0200
Subject: Relax version requirements
---
setup.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/setup.py b/setup.py
index dfdf34c..6195ffb 100644
--- a/setup.py
+++ b/setup.py
@@ -8,10 +8,10 @@ package_data = \
{'': ['*']}
install_requires = \
-['google-api-python-client>=1.7.12,<2.0.0',
+['google-api-python-client>=1.7.11,<2.0.0',
'oauth2client>=1.5.0,<5.0.0dev',
- 'pyxdg>=0.28,<0.29',
- 'setuptools>=62.6.0,<63.0.0',
+ 'pyxdg>=0.27',
+ 'setuptools',
'simplejson>=3.16.0,<4.0.0']
entry_points = \
|