-
Notifications
You must be signed in to change notification settings - Fork 31
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
Avoid using setup_requires parameter in setup.py #9
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! 👍 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in 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: