Message from discussion
Cornice 0.6 released
Received: by 10.101.6.19 with SMTP id j19mr4054271ani.12.1324492238936;
Wed, 21 Dec 2011 10:30:38 -0800 (PST)
X-BeenThere: pylons-discuss@googlegroups.com
Received: by 10.100.134.16 with SMTP id h16ls23731818and.4.gmail; Wed, 21 Dec
2011 10:30:33 -0800 (PST)
Received: by 10.236.190.68 with SMTP id d44mr14303080yhn.1.1324492233608;
Wed, 21 Dec 2011 10:30:33 -0800 (PST)
Received: by 10.236.190.68 with SMTP id d44mr14303079yhn.1.1324492233597;
Wed, 21 Dec 2011 10:30:33 -0800 (PST)
Return-Path: <chr...@plope.com>
Received: from cabana.palladion.com (cabana.palladion.com. [64.34.177.88])
by gmr-mx.google.com with ESMTPS id n75si2676039yhe.3.2011.12.21.10.30.33
(version=TLSv1/SSLv3 cipher=OTHER);
Wed, 21 Dec 2011 10:30:33 -0800 (PST)
Received-SPF: neutral (google.com: 64.34.177.88 is neither permitted nor denied by best guess record for domain of chr...@plope.com) client-ip=64.34.177.88;
Authentication-Results: gmr-mx.google.com; spf=neutral (google.com: 64.34.177.88 is neither permitted nor denied by best guess record for domain of chr...@plope.com) smtp.mail=chr...@plope.com
Received: from [192.168.1.145] (ip72-209-213-54.dc.dc.cox.net [72.209.213.54])
(using SSLv3 with cipher DHE-RSA-AES256-SHA (256/256 bits))
(No client certificate requested)
by cabana.palladion.com (Postfix) with ESMTP id 6AD101CC794
for <pylons-discuss@googlegroups.com>; Wed, 21 Dec 2011 11:31:49 -0500 (EST)
Subject: Re: Cornice 0.6 released
From: Chris McDonough <chr...@plope.com>
To: pylons-discuss@googlegroups.com
In-Reply-To: <CANrgwFS5MP3FfGKtVfBKBzvr+OisvvoJ0PQ5k++kqyBzK6K9CQ@mail.gmail.com>
References: <bf34fe26-b0d8-4045-b85a-1d0fa22b3975@l19g2000yqc.googlegroups.com>
<CANrgwFS5MP3FfGKtVfBKBzvr+OisvvoJ0PQ5k++kqyBzK6K9CQ@mail.gmail.com>
Content-Type: text/plain; charset="UTF-8"
Date: Wed, 21 Dec 2011 13:30:31 -0500
Message-ID: <1324492231.9436.10.camel@thinko>
Mime-Version: 1.0
X-Mailer: Evolution 2.28.3
Content-Transfer-Encoding: 7bit
On Wed, 2011-12-21 at 12:17 -0600, Steve Schmechel wrote:
> Following the tutorial did not work for me using "pip", but worked
> fine using "easy_install" (distribute).
> It was done with Python 2.7 in a virtual environment created with
> --no-site-packages.
The error message doesn't seem to show anything useful. I'm pretty
clueless. There's a tempfile mentioned as "install-record.txt"; maybe
it has information.
> Also, you may want to look at "pinning" the dependency versions for
> Cornice. It seems to pull in the latest of everything, which will
> likely be a problem at some point. (It pulled in the just-released
> Pyramid version 1.3a3.)
Making a package author responsible for pinning dependencies is usually
a really poor idea, because it means the package cannot be used in
configurations where it actually does work but an old pin or a
too-conservative pin prevents it. In general, if folks want guaranteed
stability and repeatability, they are going to need to maintain their
own version pins (using a requirements.txt, a buildout.cfg, or a
self-hosted index).
- C