PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Thursday the 18th of June, 2015

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[11:05:13] <bonega> Shouldn't pip cache git+ssh installs?(atleast https)
[11:05:26] <bonega> when a tag is used
[11:51:06] <tos9> bonega: What do you want to cache? The only thing pip will know is whether the package is installed or not and its python version, not what git tag that corresponded to (and not sure it should assume that the tag points to the same thing, tags aren't just used for versions)
[11:51:39] <tos9> pip does always hit the network regardless of whether the package is installed and you have #egg, that I think is a bug and I think I got dstufft to agree but I didn't have time to look into fixin git.
[11:51:48] <tos9> hee hee, fixing it, not fixing git, git's beyond fixing.
[11:55:45] <bonega> tos9: Basically I want to use pi2pi to push deps to a local pip repository
[11:57:51] <bonega> I have a few git-dependencies that I want to "pre-cache" at my deploy target
[11:59:20] <bonega> Pushing them works fine, but on my workstation it will always redownload the packages before pushing them
[11:59:45] <bonega> And there could be something like 50-deploys at a time
[12:07:42] <tos9> bonega: yeah -- I *think* you're describing what I was calling the bug
[12:07:44] <tos9> but I'm not sure
[12:10:08] <tos9> bonega: soryr, it's early and I'm running to work, but if you are, this is what we (unfortunately) do: https://bpaste.net/show/36de7021c013
[12:18:23] <ronny> bonega: you could use devpi, or build own wheels and put them into a folder
[14:11:41] <bonega> tos9 and ronny: thanks for you help, I will look it up