From 7e59dfe1da6eeeeed872f48089ca4334905dde0b Mon Sep 17 00:00:00 2001 From: Grey Li Date: Wed, 13 Oct 2021 21:24:24 +0800 Subject: [PATCH] Set lower bound version for install requirements --- setup.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/setup.py b/setup.py index b3ba96d6..2ed0c801 100644 --- a/setup.py +++ b/setup.py @@ -16,10 +16,12 @@ author_email='info@vesoft.com', long_description='Python client for Nebula Graph V2.0', url='https://github.com/vesoft-inc/nebula-python', - install_requires=['httplib2', - 'future', - 'six', - 'pytz'], + install_requires=[ + 'httplib2 >= 0.20.0', + 'future >= 0.18.0', + 'six >= 1.16.0', + 'pytz >= 2021.1', + ], packages=find_packages(), platforms=["3.5, 3.7"], package_dir={'nebula2': 'nebula2'},