vsphere-automation-sdk-python icon indicating copy to clipboard operation
vsphere-automation-sdk-python copied to clipboard

setup.py deprecated, replaced by pyproject.toml

Open sodul opened this issue 1 year ago • 1 comments

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

sodul avatar Apr 04 '23 21:04 sodul

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:

  1. Upgrade your pip version to the latest using the following command: pip install --upgrade pip
  2. 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
  3. Verify that the installation was successful by running the following command: pip show vsphere-automation-sdk-python
  4. 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

iamrajiv avatar May 05 '23 06:05 iamrajiv