Skip to content

Commit a380e5d

Browse files
committed
Updated vSphere bindings for 8.0 GA.
Signed-off-by: Ankit Agrawal <[email protected]>
1 parent 5afd727 commit a380e5d

File tree

10 files changed

+35
-6
lines changed

10 files changed

+35
-6
lines changed

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -256,8 +256,9 @@ $ python samples/vsphere/vcenter/vm/list_vms.py -v
256256
### vSphere API Documentation
257257

258258
* [VMware vSphere REST API Reference documentation](https://developer.vmware.com/docs/vsphere-automation/latest/)
259-
* [vSphere 8.0.0.0 (latest)](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.0/)
260-
* Previous Releases: vSphere [7.0.3.2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.2/),
259+
* [vSphere 8.0.0.1 (latest)](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.1/)
260+
* Previous Releases: vSphere [8.0.0.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/8.0.0.0/),
261+
vSphere [7.0.3.2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.2/),
261262
[7.0 U3](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.3.0/)
262263
[7.0 U2](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.2.0/), [7.0 U1](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.1.0/), [7.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/7.0.0.1/), [6.7.0](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.7.0), [6.6.1](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.6.1), [6.5](https://vmware.github.io/vsphere-automation-sdk-python/vsphere/6.5).
263264

Binary file not shown.
Binary file not shown.
239 KB
Binary file not shown.

lib/vapi-client-bindings/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
<a href='vapi_client_bindings-3.9.0-py2.py3-none-any.whl'>vapi_client_bindings-3.9.0-py2.py3-none-any.whl</a><br />
1+
<a href='vapi_client_bindings-4.0.0-py2.py3-none-any.whl'>vapi_client_bindings-4.0.0-py2.py3-none-any.whl</a><br />
Binary file not shown.
Binary file not shown.

requirements.txt

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,20 @@
1+
###### Common Requirements ######
12
lxml >= 4.3.0
23
pyVmomi >= 6.7
3-
vapi-client-bindings == 3.9.0
4+
six (>=1.12)
5+
###### Different dependency requirements for different python version ######
6+
pyOpenSSL (==19.1.0); python_version <= "3.6"
7+
cryptography (<3.0,>=2.8); python_version <= "3.6"
8+
setuptools (==36.2.0); python_version <= "3.6"
9+
requests (==2.21.0); python_version <= "3.6"
10+
idna (>=2.5,<2.9); python_version <= "3.6"
11+
12+
requests (==2.27.1); python_version > "3.6"
13+
pyOpenSSL (==22.0.0); python_version > "3.6"
14+
cryptography (==36.0.0); python_version > "3.6"
15+
setuptools (==62.0.0); python_version > "3.6"
16+
###### SDK requirements ######
17+
vapi-client-bindings == 4.0.0
418
vmc-client-bindings
519
nsx-python-sdk
620
nsx-policy-python-sdk

requirements_pypi.txt

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,16 @@
1+
###### This requirements file is used for local installation, Where access to GitHub is restricted ######
2+
###### Common Requirements ######
13
lxml >= 4.3.0
24
pyVmomi >= 6.7
5+
six (>=1.12)
6+
###### Different dependency requirements for different python version ######
7+
pyOpenSSL (==19.1.0); python_version <= "3.6"
8+
cryptography (<3.0,>=2.8); python_version <= "3.6"
9+
setuptools (==36.2.0); python_version <= "3.6"
10+
requests (==2.21.0); python_version <= "3.6"
11+
idna (>=2.5,<2.9); python_version <= "3.6"
12+
13+
requests (==2.27.1); python_version > "3.6"
14+
pyOpenSSL (==22.0.0); python_version > "3.6"
15+
cryptography (==36.0.0); python_version > "3.6"
16+
setuptools (==62.0.0); python_version > "3.6"

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from setuptools import setup
66

77
setup(name='vSphere Automation SDK',
8-
version='1.79.0',
8+
version='1.80.0',
99
description='VMware vSphere Automation SDK for Python',
1010
url='https://github.com/vmware/vsphere-automation-sdk-python',
1111
author='VMware, Inc.',
@@ -15,7 +15,7 @@
1515
'lxml >= 4.3.0',
1616
'pyVmomi >= 6.7',
1717
'vapi-runtime @ file://localhost/{}/lib/vapi-runtime/vapi_runtime-2.37.0-py2.py3-none-any.whl'.format(os.getcwd()),
18-
'vapi-client-bindings @ file://localhost/{}/lib/vapi-client-bindings/vapi_client_bindings-3.9.0-py2.py3-none-any.whl'.format(os.getcwd()),
18+
'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()),
2020
'vmc-client-bindings @ file://localhost/{}/lib/vmc-client-bindings/vmc_client_bindings-1.61.0-py2.py3-none-any.whl'.format(os.getcwd()),
2121
'nsx-python-sdk @ file://localhost/{}/lib/nsx-python-sdk/nsx_python_sdk-4.0.1.0.0-py2.py3-none-any.whl'.format(os.getcwd()),

0 commit comments

Comments
 (0)