[08:48:08] <codedecay> For some reason tonight my pip stopped copying binaries to /usr/local/bin. (Mac)
[08:48:19] <codedecay> anyone have an idea what I can do to fix it besides manually moving the files?
[08:59:29] <ztane> pypi went down a moment ago, back up again
[09:02:35] <ronny> codedecay: what version of pip?
[09:26:14] <busla> I´m trying to change a git repo (from original to a fork) in requirements.txt but am unable to override the already installed package when I deploy. Does anyone know if there is a "force upgrade" on a single package in requirements.txt?
[09:37:38] <tos9> codedecay: also what do you mean by copying? You mean creating binaries for things you're installing that specify `scripts` and things?
[09:37:56] <tos9> codedecay: (and for what ronny said, pastebin the full output of pip --version not just the version number)
[10:01:57] <busla> it´s already installed, and I need to override it
[10:01:58] <mgedmin> yes, so? your fork will be version 1.2+busla1 in its setup py, but the installed version won't be -- and I would expect pip to go fetch it from the git url
[10:02:25] <tos9> mgedmin: pip will always go fetch it from the git URL
[10:02:37] <tos9> (even if you specify a version, because it doesn't know how versions correspond to git commits)
[10:03:06] <tos9> busla: right so, you have a requirements file, and you want to upgrade one thing in it to a new version, but not anything else in it that's not pinned?
[10:03:24] <busla> tos9: correct. I get Requirement already satisfied (use --upgrade to upgrade)
[14:49:24] <hashar> without providing the whole site package though
[14:59:13] <ronny> hashar: unlikely to be done sanely with the current mechanisms, it would be doable if there was something like a repository of unpacked wheels
[14:59:21] <ronny> but its tricky to build such a thing