Account Options

  1. Sign in
The old Google Groups will be going away soon, but your browser is incompatible with the new version.
Google Groups Home
« Groups Home
Pyramid 1.3.3 released
There are currently too many topics in this group that display first. To make this topic appear first, remove this option from another topic.
There was an error processing your request. Please try again.
flag
  7 messages - Collapse all  -  Translate all to Translated (View all originals)
The group you are posting to is a Usenet group. Messages posted to this group will make your email address visible to anyone on the Internet.
Your reply message has not been sent.
Your post was successful
 
From:
To:
Cc:
Followup To:
Add Cc | Add Followup-to | Edit Subject
Subject:
Validation:
For verification purposes please type the characters you see in the picture below or the numbers you hear by clicking the accessibility icon. Listen and type the numbers you hear
 
Chris McDonough  
View profile  
 More options Aug 11 2012, 2:29 am
From: Chris McDonough <chr...@plope.com>
Date: Sat, 11 Aug 2012 00:29:37 -0600
Local: Sat, Aug 11 2012 2:29 am
Subject: Pyramid 1.3.3 released
Pyramid 1.3.3 has been released.  It is a maintenance release in the 1.3
series.  Here's what happened since the last release (1.3.2):

   1.3.3 (2012-08-10)
   ==================

   - Backport bug fix from master: Explicit url dispatch regexes can
     now contain colons.  https://github.com/Pylons/pyramid/issues/629

   - Backport bug fix from master: On at least one 64-bit Ubuntu system
     under Python 3.2, using the ``view_config`` decorator caused a
     ``RuntimeError: dictionary changed size during iteration``
     exception.  It no longer does.  See
     https://github.com/Pylons/pyramid/issues/635 for more information.

   - Backport bug fix from master: - In Mako Templates lookup, check if
     the uri is already adjusted and bring it back to an asset
     spec. Normally occurs with inherited templates or included
     components.  https://github.com/Pylons/pyramid/issues/606
     https://github.com/Pylons/pyramid/issues/607

The documentation for the 1.3.3 release is available at
http://docs.pylonsproject.org/projects/pyramid/en/1.3-branch/

You can install 1.3.3 via PyPI:

   easy_install Pyramid==1.3.3

Enjoy, and please report any issues you find to the issue tracker at
https://github.com/Pylons/pyramid/issues

Thanks!

- C


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Zak  
View profile  
 More options Aug 11 2012, 4:41 am
From: Zak <zakdan...@gmail.com>
Date: Sat, 11 Aug 2012 01:41:41 -0700 (PDT)
Local: Sat, Aug 11 2012 4:41 am
Subject: Re: Pyramid 1.3.3 released

What's the best way to update an existing Pyramid install?


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Erik Buttram  
View profile  
 More options Aug 11 2012, 12:20 pm
From: Erik Buttram <brokeg...@gmail.com>
Date: Sat, 11 Aug 2012 09:20:31 -0700 (PDT)
Local: Sat, Aug 11 2012 12:20 pm
Subject: Re: Pyramid 1.3.3 released

The easy_install command Chris mentioned will update your installed version.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mengu  
View profile  
 More options Aug 12 2012, 2:51 pm
From: Mengu <whalb...@gmail.com>
Date: Sun, 12 Aug 2012 11:51:19 -0700 (PDT)
Local: Sun, Aug 12 2012 2:51 pm
Subject: Re: Pyramid 1.3.3 released
easy_install -U pyramid

On Aug 11, 11:41 am, Zak <zakdan...@gmail.com> wrote:


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Raj  
View profile  
 More options Aug 12 2012, 9:57 pm
From: Raj <raj.tha...@gmail.com>
Date: Sun, 12 Aug 2012 18:57:51 -0700 (PDT)
Local: Sun, Aug 12 2012 9:57 pm
Subject: Re: Pyramid 1.3.3 released

Or if you installed Pyramid with `pip`, you can do `pip install --upgrade
pyramid`


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Jonathan Vanasco  
View profile  
 More options Aug 17 2012, 10:50 am
From: Jonathan Vanasco <jonat...@findmeon.com>
Date: Fri, 17 Aug 2012 07:50:51 -0700 (PDT)
Local: Fri, Aug 17 2012 10:50 am
Subject: Re: Pyramid 1.3.3 released

you can upgrade packages installed with `pip` using `easy_install`, and
vice versa.

pip currently has a bug in the upgrade function, so i'd recommend against
using it for upgrades.

a call to `easy_install --upgrade PACKAGE` will upgrade that package ,
upgrade any dependencies to required version numbers, and recurse through
all the packages with the same logic.
many times, this will only upgrade a single package and take a few moments.

the current version of `pip --upgrade PACKAGE` will upgrade the package,
reinstall any dependencies to the latest versions, and recurse through all
the packages with the same logic.  this will cause every package in the
'ecosystem' to be upgraded -- which can take many minutes , and can upgrade
packages to newer & incompatible versions.

the pip team is actively discussing a fix for this.

until this is addressed though, i would *strongly* recommend that you don't
'--upgrade' anything in pip.  the process is needlessly long, and you'll
find it introducing random bugs and inconsistencies in your code that are
really hard to track down if you use many 3rd party libraries in your
pyramid apps.


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
Mike Orr  
View profile   Translate to Translated (View Original)
 More options Aug 17 2012, 11:57 am
From: Mike Orr <sluggos...@gmail.com>
Date: Fri, 17 Aug 2012 08:57:01 -0700
Local: Fri, Aug 17 2012 11:57 am
Subject: Re: Pyramid 1.3.3 released

On Fri, Aug 17, 2012 at 7:50 AM, Jonathan Vanasco <jonat...@findmeon.com> wrote:
> you can upgrade packages installed with `pip` using `easy_install`, and vice
> versa.

> pip currently has a bug in the upgrade function, so i'd recommend against
> using it for upgrades.

> a call to `easy_install --upgrade PACKAGE` will upgrade that package ,
> upgrade any dependencies to required version numbers, and recurse through
> all the packages with the same logic.
> many times, this will only upgrade a single package and take a few moments.

Will it respect the existing installation method (a regular package
install) or will it convert it to easy_install's
package-inside-an-egg-directory-that's-added-to-a-pth-file?

--
Mike Orr <sluggos...@gmail.com>


 
You must Sign in before you can post messages.
To post a message you must first join this group.
Please update your nickname on the subscription settings page before posting.
You do not have the permission required to post.
End of messages
« Back to Discussions « Newer topic     Older topic »