mirror of
https://github.com/vmware/vsphere-automation-sdk-python.git
synced 2024-11-21 17:29:59 -05:00
Merge pull request #347 from kunal-pmj/master
Restrict pyvmomi dependency to 7.0.3
This commit is contained in:
commit
88d1c65407
@ -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)
|
||||
|
@ -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)
|
||||
|
2
setup.py
2
setup.py
@ -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()),
|
||||
|
Loading…
Reference in New Issue
Block a user