PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Monday the 14th of July, 2014

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[13:25:53] <bildig> Hi, I'm trying to stuff a virtualenv into a debian package to assist deployment. both the "hand rolled" strategy and the dh-virtualenv tools have failed, producing the same result: when i activate the env and try to run twistd, it thinks the python interpreter is living in the build path i used, not the install path of the virtualenv
[13:26:48] <bildig> that is, the path the virtualenv lives in once the debian was installed
[13:27:06] <bildig> the python path in the virtualenv is correct
[13:28:30] <bildig> running twisted in the activated produces the dreaded, "bad interpreter: no such file or directory" error
[13:37:47] <bildig> actually, i am mistaken - the dh-virtualenv set the hardlinks in /usr/share/python/<package_name>/lib to my build directory, but looks like it did everything else correctly.
[17:00:20] <cel1> hi, can anybody confirm that `pip ARG` throws a ValueError, when the argument starts with a upper case letter?
[17:01:58] <tomprince> cel1: Yes.
[17:02:14] <cel1> looks like a bug, doesn't it?
[17:02:18] <tomprince> s/starts/contains/
[17:02:20] <tomprince> Yes.
[17:04:24] <tomprince> And it seems perhaps *only* upper case letters trigger this. Experimenting with other unusal characters just gets the command not found error.
[17:10:07] <cel1> do I have to report it at github or will somebody who can fix it see it anyway?
[17:14:18] <DanielHolth> what is it
[17:19:52] <cel1> DanielHolth: hmh?
[17:20:41] <apollo13> cel1: I think I saw a fix for that already
[17:21:06] <apollo13> cel1: https://github.com/pypa/pip/blob/develop/CHANGES.txt#L29
[17:21:09] <cel1> apollo13: oh okay :-)
[17:21:21] <apollo13> https://github.com/pypa/pip/issues/1559
[17:21:58] <cel1> oh seems to be fixed in the master branch
[17:22:09] <cel1> looks good, thanks for the feedback
[20:28:53] <tomprince> Is there a way to get 'setup.py install' to install extras?
[20:37:53] <dzen> with pip you can
[20:41:36] <tomprince> I'm aware that pip can.
[20:41:46] <tomprince> (Although, not if you want to install from a directory)
[20:43:53] <dzen> mh I though it was another channel :(
[20:43:55] <dzen> sorry
[21:11:57] <nanonyme> tomprince, huh, why not?
[21:12:20] <nanonyme> I thought install from directory with pip was equivalent to installing a source tarball
[21:18:00] <apollo13> na, pip from a dir can install more than a source tarball afaik
[21:18:18] <apollo13> eg what the manifest includes usually could still get installed via pip install . if I am not mistaked
[21:39:51] <tomprince> nanonyme: Pip doesn't know how to parse the extra (at least without -e).