[08:42:04] <ionelmc> this is why i dislike dependency bundling, me and plenty of other people expect that the shipped code is not a mixture of copied deadcode
[08:51:01] <mgedmin> pip list --outdated -> bunch of packages, some from ~/.local, some from ubuntu's dist-packages
[08:51:11] <mgedmin> pip list --outdated --user -> only one package (hypothesis)
[08:51:22] <mgedmin> where are all the other outdated user packages go?
[14:26:36] <tomprince> mgedmin: My impression is that PEP-426 isn't fully suppported, now.
[18:24:45] <ronny> tomprince: as far as i understood toosl dont support it propperly atm
[18:27:12] <pandb> can i/should i change permissions to /usr/python/site-packages so that i can use pip without sudo or su every time?
[18:28:10] <ronny> pandb: in general /usr is under the control of the package manager if the linux distribution, you shouldnt put things in it, that the package manager does not handle
[22:43:43] <warner> is it ever correct to run a setup.py command from outside the package's directory?
[22:43:58] <warner> e.g. something like "python .../path/to/setup.py install"
[22:44:07] <warner> as opposed to "cd .../path/to && python setup.py install"
[22:44:49] <warner> it seems like pip/easy_install tend to run setup.py commands from the same directory as the setup.py, but I'm trying to work out if I need to support running those commands from a different directory