vsphere-automation-sdk-python
vsphere-automation-sdk-python copied to clipboard
setup.py deprecated, replaced by pyproject.toml
Describe the bug
When installing [email protected]
with a recent version of pip
we get deprecation warnings that setup.py will no longer be supported starting with pip 23.1.
DEPRECATION: lxml is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
DEPRECATION: pyVmomi is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
DEPRECATION: vSphere-Automation-SDK is being installed using the legacy 'setup.py install' method, because it does not have a 'pyproject.toml' and the 'wheel' package is not installed. pip 23.1 will enforce this behaviour change. A possible replacement is to enable the '--use-pep517' option. Discussion can be found at https://github.com/pypa/pip/issues/8559
Reproduction steps
pip install git+https://github.com/vmware/[email protected]#egg=vSphere-Automation-SDK
Expected behavior
The installation should complete without conflicts or deprecation warnings.
Additional context
We use the SDK alongside many other third party libraries and we need to move forward with recent versions of python, pip, setuptools, etc... This makes it important for us to be able to install the SDK with recent versions of third party libraries.
See https://github.com/pypa/pip/issues/8559
Hi @sodul,
The deprecation warnings are indicating that the [email protected]
package is being installed using the legacy setup.py
method and this behavior will no longer be supported starting with pip version 23.1. To fix this issue, follow the steps below:
- Upgrade your pip version to the latest using the following command:
pip install --upgrade pip
- Install the package with the
-use-pep517
option as follows:pip install --use-pep517 git+https://github.com/vmware/[email protected]#egg=vSphere-Automation-SDK
- Verify that the installation was successful by running the following command:
pip show vsphere-automation-sdk-python
- After these steps, you should no longer see the deprecation warnings and the installation should be completed without conflicts.
Using the --use-pep517
option will force pip to use the new method, which ensures that the package is installed correctly with the latest versions of third-party libraries.
cc: @shwetapurohit @aagrawal3