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

Merge pull request #347 from kunal-pmj/master

Restrict pyvmomi dependency to 7.0.3
This commit is contained in:
Kunal Singh 2022-12-12 12:12:58 +05:30 committed by GitHub
commit 88d1c65407
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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()),