-
-
Notifications
You must be signed in to change notification settings - Fork 9.5k
With setuptools 72.0.0 requests can no longer be installed from git #6775
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
Comments
See also #6774 |
This change was reverted in setuptools with pypa/setuptools@441799f. We'll work on the deprecation in an upcoming release. |
I was surprised to hear that Requests was affected by this, because (just as I recalled) its own source code is Python-only. Looking around a bit, I conclude:
In conclusion, AFAICT, nothing currently done in Would there be any interest in a PR to migrate the project to a proper PEP517-conformant build, such as I already offered to another project here? |
Apologies, I misunderstood the implications of "work on the deprecation". Cheers :) |
Expected Result
pip install git+https://github.com/psf/requests
gives me the latest development version ofrequests
.Actual Result
Installation fails due to an import in setup.py:
See the setuptools changelog: https://setuptools.pypa.io/en/stable/history.html#v72-0-0
Reproduction Steps
Create a venv with latest setuptools. Then run
pip install git+https://github.com/psf/requests
.The text was updated successfully, but these errors were encountered: