You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems setuptools with a setup.py is deprecated. There are now 2 possibilities:
Hotfix:
You can get rid of the warning using an older version of setuptools. The following worked for me: python.exe -m pip install --upgrade pip pip install --upgrade pip setuptools wheel
-> This updates it to the newest version which then throws a similar exception:
SetuptoolsDeprecationWarning: setup.py install is deprecated. Use build and pip and other standards-based tools.
Then it can be downgraded to 58.2.0: pip install setuptools==58.2.0
Maybe you can diretly downgrade it to 58.2.0, but I haven't tested this on my system.
Use the new format
It seems that from now on the setup.py is not longer needed. There is a different file called pyproject.toml which must be created. More information in the following links:
Is your feature request related to a problem? Please describe.
Describe the solution you'd like
Find follow-up way to generate pip-packages
The text was updated successfully, but these errors were encountered: