PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Sunday the 13th of September, 2015

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[01:12:08] <paulproteus> Howdy dstufft & others
[01:12:26] <paulproteus> I am looking into the RECORD file, and I notice that the pip version I have doesn't seem to install it when I do pip install --user mwparser
[01:12:42] <paulproteus> I'm working on a tool to convert system-installed packages to wheels, which may sound weird, but is what I'm working on today.
[01:13:12] <paulproteus> Perhaps I should take this to #pypa-dev but until someone tells me to do that, I will keep blathering here.
[01:14:45] <paulproteus> Fascinatingly other packages I install do seem to have it... so maybe I can just ignore the mwparser package and use a more reasonable/recent package.
[01:15:32] <paulproteus> Yeah, I think I will act as though nothing is wrong. Carry on, all. (-:
[02:37:12] <paulproteus> https://github.com/paulproteus/dirtbike is the current state (MUCH work required still), fwiw.
[05:13:30] <dstufft> paulproteus: RECORD is from wheels
[05:13:37] <dstufft> non wheels will have installed-files.txt
[06:55:15] <sontek> dstufft: Hey, have you had time to look at https://github.com/pypa/pip/issues/3025
[17:56:33] <ronny> dstufft: thanks
[17:57:03] <dstufft> ronny: np, thanks for merging :D Didn't want to merge on my own since I've never touched the setuptools_scm project
[17:57:14] <dstufft> sontek: not yet :( It slipped my mind
[18:40:28] <ronny> dstufft: fo we have any way to have something like travis upload eggs/wheels/sdists autoatically
[18:40:55] <dstufft> Travis has that ability, we don't currently use it
[18:41:06] <dstufft> stepping out to get lunch
[18:41:27] <ronny> unfortunate timing
[19:35:19] <paulproteus> dstufft: Gotcha re: RECORD + installed-files.txt
[19:36:15] <dstufft> paulproteus: to be totally clear, without wheel there is no actual standard for listing what files installed, setuptools provides a flag that lets you write a file out, but the name is up to the user. Pip then layers on top of this to force the name installed-files.txt so we can support uninstallation
[19:36:34] <paulproteus> I have no point I just want to say
[19:36:35] <paulproteus> o wheely
[19:42:45] <sontek> dstufft: no worries, I thought of it last night because raydeo and I were sprinting on Pyramid and I ran into it when running tox
[20:17:52] <ronny> dstufft: /buffer 15
[20:17:56] <ronny> whops, sorry
[22:25:23] <paulproteus> Hey dstufft, if you're around -- should I skip pyc (and pycache) in the wheels I generate from system code?
[22:25:32] <dstufft> paulproteus: yea
[22:25:33] <paulproteus> I guess I should include the pyc & pycache, but it's just weirds me out.
[22:25:37] <dstufft> wheels don't need .pycs
[22:25:38] <paulproteus> Cool will skip 'em
[22:25:52] <dstufft> we generate them during install
[22:25:59] <paulproteus> Neat.