[13:01:41] <utopiah> (trying again to solve my problem first before asking a silly question ;)
[13:04:10] <utopiah> (which seems to be moving away from the unmaintained python-magick to pgmagick)
[13:10:08] <ionelmc> putting all the details in one place (asking) is half the solution :-)
[13:55:18] <utopiah> ionelmc: makes me think of http://www.scholarpedia.org/article/Models_of_consciousness#Global_workspace_models
[13:55:34] <utopiah> but yes it worked problem solved, so no question left for the moment ;)
[14:23:56] <mnovenstern> I have a local version of a library that's a dependency of other libraries in my requirements.txt. pip seems to install the local version, but download the one from pypi when something that depends on it is installed, and then fails to build it.
[14:24:22] <mnovenstern> I'm pretty new to pip and python, so any pointers are appreciated
[14:37:56] <ronny> mnovenstern: does your local library declare its dependencies correctly?
[14:38:25] <ronny> mnovenstern: some libs dont declare their dependencies correctly and need to be built in a specific order
[14:39:44] <aboSamoor> hi, so I have the following package "polyglot" on pypi, when I used to use pip install polyglot it used to download all the dependencies. Recently, this does not work anymore it does not seem that pip is able to download the depdencies given the information in requirements.txt, any idea?
[14:59:19] <ronny> aboSamoor: requirements.txt are not the thing that declares dependencies for a package
[14:59:36] <ronny> aboSamoor: install_requires in setup.py do
[15:22:42] <aboSamoor> ronny: here is how my setup.py looks like http://paste.ubuntu.com/10409550/
[15:23:15] <aboSamoor> ronny: then I try to install the package using pip install git+file:///data/polyglot
[15:23:30] <aboSamoor> but it does not pull the dependencies that are defined in requirements
[15:40:57] <ronny> aboSamoor: what does happen with a normal pip install -e data ?
[15:41:28] <ronny> aboSamoor: also is there a *.egg_info folder, is the requiresments file in it intact
[17:38:57] <DanielHolth> check it out, realized you can just grab setup-requirements in the top of a single setup.py instead of reading real-setup.py from a separate file.
[20:24:17] <diranged> Can someone here help me figure out whats wrong with our http://setup.py/requirements files? If we install all of our dependencies by hand (or, install via pip install -r requirements.txt), it works fine. However, when we install our app itself via pip (through pypi), it fails on the 'requests' library. See this pastie: http://pastie.org/private/zmtyj8k1ckhh9wptigbxw. Here's a pastie using the requirements.txt file and it working fine: http://pastie.org/priva
[20:24:39] <_habnabit> diranged, pick one channel and stick with it, please
[20:25:45] <_habnabit> diranged, anyway, python-rightscale looks kind of weird
[20:26:17] <diranged> I suspect thats where the issue is… I forked the guys repo to fix a few things, but overall its not our code. I have a feeling its broken in his setup.py.. but I'm just not sure where.
[20:27:09] <_habnabit> diranged, oh, yeah, python-rightscale is all kinds of weird
[20:27:22] <_habnabit> diranged, it has requests in its setup_requires, which i think is confusing pip
[20:27:28] <Ivo> diranged: unless you are using an extremely old virtualenv, --no-site-packages is the default and not needed