Skip to content

Commit 5888b4c

Browse files
author
singhk
committed
Restrict pyvmomi dependency to 7.0.3 in setup.py and requirements files
Signed-off-by: singhk <[email protected]>
1 parent a5ef74d commit 5888b4c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
###### Common requirements ######
22
lxml >= 4.3.0
3-
pyVmomi >= 6.7
3+
pyVmomi (<=7.0.3,>=6.7)
44
six (>=1.12)
55

66
requests (==2.27.1)

requirements_pypi.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
###### This requirements file is used for local installation where access to GitHub is restricted ######
22
###### Common requirements ######
33
lxml >= 4.3.0
4-
pyVmomi >= 6.7
4+
pyVmomi (<=7.0.3,>=6.7)
55
six (>=1.12)
66
requests (==2.27.1)
77
pyOpenSSL (==22.0.0)

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
packages=[],
1414
install_requires=[
1515
'lxml >= 4.3.0',
16-
'pyVmomi >= 6.7',
16+
'pyVmomi <=7.0.3,>=6.7',
1717
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),
1818
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-4.0.0-py2.py3-none-any.whl'.format(os.getcwd()),
1919
'vapi-common-client @ file://localhost/{}/lib/vapi-common-client/vapi_common_client-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),

0 commit comments

Comments
 (0)