PMXBOT Log file Viewer

Help | Karma | Search:

#pypa logs for Friday the 23rd of May, 2014

(Back to #pypa overview) (Back to channel listing) (Animate logs)
[00:11:51] <weykent> i'm trying to make a package versioned 0.1.1-5, but something along the way is unhappy. pip wheel built the package into a wheel called 'sanpera-0.1.1_5-cp27-none-linux_x86_64.whl', and `pip install sanpera==0.1.1-5` apparently can't find that wheel
[00:12:05] <weykent> not sure what i should file a bug against, if this is indeed a bug
[00:14:04] <weykent> hmph. that pip install command worked on a /different/ box
[00:14:21] <dstufft> I think that was a bug in pip
[00:14:33] <dstufft> that has since been fixed
[00:15:05] <weykent> oh
[00:15:09] <weykent> maybe it's a different version of pip, then
[00:15:25] <weykent> the one that failed is pip 1.4.1
[00:15:56] <weykent> and the one that didn't fail is 1.5.5, so that seems likely
[00:16:33] <weykent> there, upgraded pip
[15:43:10] <msabramo> what's the latest thinking on how to deal with a package that has setup_requires=['foo'] and install_requires=['foo']? My observation is that this causes setuptools to download a foo.egg file to the current directory, install_requires then decides it doesn't need to install the package, and then the software craps out when it tries to import it because it can't import from the egg :-(
[15:46:19] <Alex_Gaynor> msabramo: what we have here () https://github.com/pyca/cryptography/blob/master/setup.py seems to work somewhat reliably
[15:46:55] <msabramo> Alex_Gaynor: thanks, let me take a look
[15:48:29] <msabramo> what's the key difference?
[15:48:45] <msabramo> CFFIBuild?
[15:49:45] <msabramo> I feel like setuptools probably could have some kind of different behavior that makes this less of a pain
[15:50:38] <msabramo> like making setup_requires install "permanently" into the environment instead of into the local egg file if install_requires is also specified
[20:02:08] <user123> Can I have some help here about issue consisting of Windows, generetaed EXE from wheels, unnecessary quoting of path with spaces and following error "Fatal error in launcher: Unable to create process using '""F:\Program Files\Python27\python.exe"" "f:\Program Files\Python27\Scripts\virtualenv.exe" ' " (it's from pylauncher)? If there is someone willing to help I will write up more information about my situation
[20:04:49] <user123> !logs
[20:04:49] <pmxbot> http://chat-logs.dcpython.org/channel/pypa
[20:05:07] <DanielHolth> user123 I think you will find that bug recently fixed
[20:05:14] <DanielHolth> however the fix may not have been released yet
[20:07:48] <user123> Thanks, is this bug from some PyPA project? I'm OK to install from upstream repo and get rid of this issue
[20:08:25] <dstufft> it was fixed in distlib, we haven't pulled the new distlib into pip yet
[20:10:45] <user123> Ok and thanks for all the things, I'm disabling wheels for now