[13:00:36] <apollo13> https://dpaste.de/jcPj how to fix that^^
[13:00:49] <apollo13> guess I have to download manually and run setup.py
[13:01:38] <apollo13> fixed, not really nice though^^
[14:28:28] <stbatduke> Who should I itell that the SSL certificate for pypi.python.org doesn't match correctly and is written for www.python.org, and therefore wget gives errors: "wget https://pypi.python.org/packages/source/v/virtualenv/virtualenv-1.11.6.tar.gz" ?
[14:29:44] <Alex_Gaynor> stbatduke: What version of wget do you have?
[14:30:10] <Alex_Gaynor> Some older versions don't correctly recognize SANs (Subject Alternate Names) -- this can be fixed with a newer version of wget; our cert is fine.
[14:30:18] <Alex_Gaynor> (accessing pypi in your browser will confirm this)
[15:45:12] <linovia> Is there a way with to get the entry point location once the application is running (after it's been called through the entry point) ?
[17:14:56] <DanC> ERROR: certificate common name `www.python.org' doesn't match requested host name `pypi.python.org'.
[17:15:45] <DanC> wierd... I can download https://pypi.python.org/packages/source/s/setuptools/setuptools-5.7.tar.gz#md5=81f980854a239d60d074d6ba052e21ed using a browser but not from curl
[19:14:22] <DanC> 1.10.1 is a version I managed to package into a working .rpm some time ago
[19:14:34] <DanC> (or at least: I think it used to work)
[19:14:45] <DanC> I can't find any documentation on where virtualenv expects to find setuptools
[19:15:32] <DanC> deploying python apps to SLES 11 is costing me a lot of hair
[19:16:23] <DanC> I wonder if I should start at the top and build python from source... though I'd much rather let suse track security issues.
[19:23:27] <DanC> so... suppose you have 50 amazon VMs and you want to put virtualenv on all of them... and your IT dept. says you have to use, say, CentOS 5, and you need a more modern version of virtualenv and pip for, say, wheel support?
[19:25:36] <tomprince> Do you actually need a newer version of virtualenv?
[19:25:50] <tomprince> Or can you just do 'pip install -U pip' in the virtualenv?
[19:34:27] <dstufft> DanC: sorry I forgot to reply, that's a fairly old virtualenv, you might want to try to use fpm to package it
[19:38:59] <DanC> in the virtualenv? the one I can't create?
[19:45:59] <DanC> I'd like to be able to use `rpm -qif /usr/bin/virtualenv` to figure out where virtualenv came from, but maybe I just won't install it system-wide
[20:14:45] <stbatduke> Hello #pypa! Was trying to pip install psycopg2 and got the error pasted here: http://pastebin.com/PgsryCLG and then the full error pasted here http://pastebin.com/WNXZLVSA
[20:18:20] <Alex_Gaynor> stbatduke: it looks like you don'[t have the python dev headers, you can fix this with `apt-get install python-dev`
[20:22:14] <stbatduke> Unfortunately, since this is a production environment, I cannot do apt-get to install anything outside of the virtualenv
[20:22:38] <stbatduke> Is there a way to install the python-dev developement headers for only the virtualenvironments python binary?
[20:27:08] <Alex_Gaynor> Not really, you really need to get the dev headers from the same place as you got the python binary; which I'm assuming is your OS package manager
[20:28:15] <stbatduke> No, the python binaries were installed manuallyi
[20:28:35] <stbatduke> because debian 6.0.9 doesn't have python 2.7.3
[20:30:40] <Alex_Gaynor> Ah, where are you getting that python from?