PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Friday the 30th of January, 2015

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[02:05:38] <Moult> pf_moore: ping
[02:06:04] <Moult> pf_moore: i am experiencing https://github.com/pantsbuild/pex/issues/9 - specifically AttributeError: 'UUID' object has no attribute 'get_hex' - what did you do to solve it?
[06:06:36] <usinganalias> When running python setup.py install, can you specify a version of python to install for?
[06:08:48] <_habnabit> usinganalias, please don't crosspost
[06:09:01] <usinganalias> _habnabit: I’ll refrain. Thank you!
[11:08:05] <pf_moore> Moult: not sure if you're still around, but IIRC as noted in the issue, some change they made seemed to have fixed it. I've no idea beyond that, I gave up on pex because it didn't seem to be likely to support Windows any time soon.
[11:12:47] <Moult> pf_moore: still around, darn, i have no idea why i'm running into it.
[11:12:56] <Moult> pf_moore: i'm on linux actually, so it doesn't seem to be a windows specific problem
[11:15:46] <pf_moore> Moult: OK, sorry I can't be any more help
[11:17:48] <Moult> pf_moore: ok, i will codedive, albeit slowly, as i am only experiencing this on the server and so am building/editing through ssh
[11:18:11] <pf_moore> Moult: Lovely, have fun ;-)
[12:25:09] <Moult> pf_moore: ping
[12:38:36] <Moult> pf_moore: https://github.com/pantsbuild/pex/pull/39 was what i was experiencing by the way :)
[13:06:49] <pf_moore> Moult: Cool, glad you found it :-)
[16:04:47] <ramnes> is the subdirectory option of pip install supposed to work with pip 1.5.4?
[17:32:16] <Wooble> Ugh, pip on windows under git-bash turns off the cursor. And I have no idea how to turn it back on because there's no tput command.
[17:34:19] <apollo13> does reset work?
[17:34:28] <apollo13> just hit enter and type reset followed by enter again
[17:34:56] <Wooble> eh, I gave up and moved to a linux VM because cx_oracle was going to be awful anyway.
[17:35:03] <apollo13> haha
[17:35:17] <apollo13> well oracle is no fun either way, sooooo… not sure what you are trying to say^^
[17:47:53] <dstufft> Wooble: I think pf_moore did something about this recently, maybe I should have pulled it into 6.0.7
[17:51:22] <pf_moore> dstufft: Yeah, IIRC that's fixed in develop. Sorry, I said "not a big deal", probably shouldn't have.#
[17:51:44] <dstufft> It's no worries
[17:51:52] <dstufft> https://github.com/pypa/pip/issues/2384 looks like something we might want to patch too
[17:52:02] <dstufft> so I might end up doing a 6.0.8
[17:56:53] <xafer> yup, any idea ? would love to have the opinion of jaraco :-/
[18:03:14] <SliZe> So I'm trying to install Flask-MySQL, but it's just telling me that it can't find vcvarsall.bat
[18:03:27] <SliZe> Log: http://pastebin.com/CpJWJXFm
[18:03:35] <SliZe> Google doesn't help
[18:15:39] <dstufft> xafer247: I dunno, I know that egg-info files come from distutils instead of setuptools tho
[19:00:29] <tdsmith> Would it make sense for pip install --user to work in a way other than passing --user to setuptools? my selfish motivation is working around http://bugs.python.org/issue22269
[19:11:55] <dstufft> tdsmith: maybe. It'd probably be better to fix it in distutils and/or setuptools but if it needs to be fixed in pip we can do it there
[19:12:22] <tdsmith> I guess setuptools is more natural than pip
[19:12:46] <dstufft> we might need a fix in pip regardless for wheels
[19:13:04] <dstufft> but for sdsits setuptools is likely a better place
[19:13:08] <tdsmith> I don't anticipate seeing this in distutils in 2.7 but maybe I'm pessimistic?
[19:13:44] <dstufft> dunno, the bugs.p.o link has 2.7 tagged
[19:13:48] <dstufft> so it might get there
[19:19:35] <tdsmith> guess i could contribute some unit tests
[21:17:16] <Guin> Hello. I've been using virtualenvwrapper on a mac with the python2 version that had come with the system. I just downloaded and installed the new python 3.4. How do i get virtualenvwrapper to use this python version when making a new virtualenv?
[21:23:43] <apollo13> mkvirtualenv -p PYTHON_EXE
[21:49:15] <Guin> it says the executable does not exist. completely new to this, so sorry if this is something really obvious. here is what i tried https://dpaste.de/HwDU
[21:50:51] <apollo13> Guin: uhm mkvirtualenv -p python3.4
[21:50:58] <apollo13> if that doesn't work, the full path to it
[22:31:36] <Guin_> mkvirtualenv -p python=/Library/Frameworks/Python.framework/Versions/3.4/bin envy
[22:31:36] <Guin_> The executable /Users/angelika/python=/Library/Frameworks/Python.framework/Versions/3.4/bin (from --python=/Users/angelika/python=/Library/Frameworks/Python.framework/Versions/3.4/bin) does not exist
[22:32:11] <Guin_> i think its still looking in the wrong directory?
[22:32:28] <apollo13> Guin_: I said -p path/to/python3.4
[22:32:37] <apollo13> why are you adding python= in front of it all the time?
[22:36:50] <Guin_> -p path/to/python3.4 produces the same traceback https://dpaste.de/3rop#L
[22:37:17] <apollo13> no
[22:37:26] <apollo13> you just pass in the path to the directory
[22:37:34] <apollo13> you have to pass in the path to the interpreter
[22:37:58] <apollo13> -p is used to specify the executeable which is used to create the venv
[22:38:10] <apollo13> since bin is a directory instead you get permission denied
[22:41:06] <Guin_> ah gotcha. knew i was missing something really obvious. thank you!
[22:41:18] <apollo13> you are welcome
[23:19:38] <xafer> dstufft, thanks for the tip on the egg-info file origin !