1
0
mirror of https://github.com/vmware/vsphere-automation-sdk-python.git synced 2024-11-21 09:19:59 -05:00

Restrict pyvmomi dependency to 7.0.3 in setup.py and requirements files

Signed-off-by: singhk <singhk@vmware.com>
This commit is contained in:
singhk 2022-11-30 14:56:07 +05:30
parent a5ef74d9d9
commit 5888b4cbdf
3 changed files with 3 additions and 3 deletions

View File

@ -1,6 +1,6 @@
###### Common requirements ######
lxml >= 4.3.0
pyVmomi >= 6.7
pyVmomi (<=7.0.3,>=6.7)
six (>=1.12)
requests (==2.27.1)

View File

@ -1,7 +1,7 @@
###### This requirements file is used for local installation where access to GitHub is restricted ######
###### Common requirements ######
lxml >= 4.3.0
pyVmomi >= 6.7
pyVmomi (<=7.0.3,>=6.7)
six (>=1.12)
requests (==2.27.1)
pyOpenSSL (==22.0.0)

View File

@ -13,7 +13,7 @@ setup(name='vSphere Automation SDK',
packages=[],
install_requires=[
'lxml >= 4.3.0',
'pyVmomi >= 6.7',
'pyVmomi <=7.0.3,>=6.7',
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-4.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
'vapi-common-client @ file://localhost/{}/lib/vapi-common-client/vapi_common_client-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),