-
Notifications
You must be signed in to change notification settings - Fork 29
Avoid using setup_requires parameter in setup.py #9
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Comments
I second this for the same reason: our corporate PyPI mirror is attempting to install setuptools-scm via PyPI instead of the internal PyPi mirror for some reason. Not to mention that |
RonnyPfannschmidt
added a commit
that referenced
this issue
Jul 31, 2020
RonnyPfannschmidt
added a commit
that referenced
this issue
Jul 31, 2020
fix #9 no longer use setup_requires
released in https://pypi.org/project/iniconfig/1.0.1/ |
Thank you very much for the quick fix! 👍 |
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Howdy!
I stumbled upon problem with setup_requires and pip/poetry while using corporate PYPI mirror. As this package is used by pytest 6.0 (released 2 days ago) it can break things for many people.
Current workaround is to install
setuptools-scm
manually via pip, before poetry, but it still requires time to debug and fix.More references for this problem: pytest-dev/pytest-xdist#136 pypa/setuptools#209
The text was updated successfully, but these errors were encountered: