PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Monday the 11th of January, 2016

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[09:49:51] <sam> howdy gentlefolks
[10:52:06] <sam> now that dependency_links is deprecated, is there a way to automatically fetch dependencies from git upon installation of a package from git?
[10:52:52] <sam> i.e. I do "pip3 install git+http://git.lan/foo.git" and I would like git+http://git.lan/bar.git to be automatically installed if foo depends on it
[17:08:31] <agronholm> sam: you'll need to put your dependencies in a text file and then "pip 3 install -r requirements.txt" (or whatever you named it)
[17:53:34] <sam> agronholm: but I don’t have access requirements.txt when installing foo
[17:53:39] <sam> *access to
[18:29:31] <agronholm> sam: why not?
[18:29:53] <agronholm> you're pulling the whole git repository
[18:30:25] <agronholm> which could contain a requirements.txt
[18:30:25] <agronholm> oh hm right
[18:30:25] <agronholm> but
[18:30:26] <agronholm> you could just point it directly to the file over http somewhere
[18:31:07] <sam> yes, I was just expecting a more automated procedure, since each of the dependencies have their own requirements.txt, too
[19:59:07] <ericholscher> do I still need the setup.cfg with `wheel\n universal=1`?