Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Find follow-up way to generate pip-packages #91

Open
gituser789 opened this issue Jun 23, 2022 · 1 comment
Open

Find follow-up way to generate pip-packages #91

gituser789 opened this issue Jun 23, 2022 · 1 comment
Assignees

Comments

@gituser789
Copy link
Contributor

Is your feature request related to a problem? Please describe.
image

Describe the solution you'd like
Find follow-up way to generate pip-packages

@JonasHoelscher
Copy link

JonasHoelscher commented Mar 21, 2023

It seems setuptools with a setup.py is deprecated. There are now 2 possibilities:

  1. 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.

  1. 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:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants