-
Notifications
You must be signed in to change notification settings - Fork 69
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
Installing zope.interface 4.1.3 via setuptools.setup eats all memory #28
Comments
Looks like a setuptools bug to me -> https://bitbucket.org/pypa/setuptools/issues |
So it looks two bugs for the price of one:
It's hard to say at this point if the first bug is a bug in setuptools, or if it's actually zope.interface's setup.py doing something wrong. |
BTW does |
Yes!
|
This was reported fixed in setuptools 18. Can that be confirmed and this issue closed? |
I never figured out how to reproduce it. @georgevreilly, can you confirm? |
This no longer reproes for me. |
When I install zope.interface 4.1.3 implicitly using
setuptools.setup()
, I run out of memory in my Docker container on a 24GB host after a minute of high CPU utilization. When I install it explicitly viapip install zope.interface
, it installs immediately without consuming a pile of resources.If I then install directly with pip, it promptly succeeds
Now my
setup.py
succeedsThis is completely reproducible on my host and containers (all Ubuntu 14.04). GCC 4.8.4 is present in the container.
The text was updated successfully, but these errors were encountered: