You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm having problems with building a package depending on Pandas behind proxy, because setup_requires is specified in setup.py.
"pip install" calls setup.py egg_info, which in turn wants numpy, which it cannot find. Numpy is installed along with Pandas by pip, but setup.py can't know about this.
I see that there was a request opposite to mine (#3861) to make it usable with buildout... But maybe there's another way to use it with buildout? I think that pip is more of a Python standard than buildout...
The text was updated successfully, but these errors were encountered:
The issue concerns only installation in offline/proxied environments, which may not be common for Pandas users. I don't know if we can use conda, because all things we are integrating would be required to use it or we would need to make some strange pip/conda mixing.
Anyway, it doesn't bother us at the moment, because we were just checking out one component, but if we'll need to automate things, then I'll maybe try to fix this. You know, I just wanted to let you know.
I'm having problems with building a package depending on Pandas behind proxy, because setup_requires is specified in setup.py.
"pip install" calls setup.py egg_info, which in turn wants numpy, which it cannot find. Numpy is installed along with Pandas by pip, but setup.py can't know about this.
The same issue would also appear if I'd want install an offline package for the app I'm using.
This is why pip documentation discourages setup_requires
I see that there was a request opposite to mine (#3861) to make it usable with buildout... But maybe there's another way to use it with buildout? I think that pip is more of a Python standard than buildout...
The text was updated successfully, but these errors were encountered: