Skip to content
mcdonc edited this page Sep 26, 2011 · 50 revisions

The Pyramid master nominally runs on Python 3.2 (as of September 25, 2011). It does not require a "translation" (via 2to3 or 3to2) but instead uses a single codebase that run under 2 and 3.

Currently neither scaffolding ("paster create") or paster commands like "paster pshell" or "paster pview" work. Also, some scaffolding dependencies such as zope.sqlalchemy and the transaction package are not yet ported, or, if they are, haven't had a general release yet. So it's not really ready for general public usage yet. However, it can be used by the curious hacker under Python 3.2, like so:

from pyramid.view import view_config
from pyramid.config import Configurator
from pyramid.response import Response
from wsgiref.simple_server import make_server

@view_config(route_name='test_page')
def test_page(request):
    return Response('Hello World')

if __name__ == '__main__':
    config = Configurator()
    config.add_route('test_page', '/test')
    config.scan('__main__')
    httpd = make_server('', 8000, config.make_wsgi_app())
    httpd.serve_forever()

You'll need to install the WebOb master by hand into your virtualenv for this to work properly (https://github.com/Pylons/webob ).

Below are more details.

Dependencies that still need replacing

PasteScript has not been ported, nor have its dependencies. We likely will need to replace PasteScript rather than port it, unless someone is brave enough to do it in the meantime. Here's a list of the resulting packages that don't work that we will need to replace.

The fact that these dependencies are missing makes it necessary to create a Pyramid app "by hand" (ala https://docs.pylonsproject.org/docs/pyramid_quick_tutorial.html) instead of using "paster create" to create a new project.

Unported Pyramid scaffolding dependencies (required by Pyramid scaffolds, not core)

We'll be porting these things over time, but as of this writing, none are known to work on Python 3.2.

Already-ported Pyramid dependencies

  • Chameleon (already worked under Py2.5 and Py3.2)
  • Mako (already worked under Py2.4-Py3.2)
  • MarkupSafe (already worked under Py2.4-Py3.2)
  • translationstring (merged jayd3e's py3 branch to trunk, released as 0.4)
  • venusian (jbohman ported, released as 1.0a1)
  • zope.interface (ported as of 3.6.0+)
  • repoze.lru (jbohman ported, released as 0.4)
  • zope.deprecation (chrism ported, released as 3.5.0)
  • WebTest (ported by gawel, released as 1.3.1)
  • WebOb (Joe Dallago: GSOC 2011 project, Chris McDonough picked up porting work, docs and testing work still remains, but webob trunk at https://github.com/Pylons/webob has 3.2 support, no release yet save for zipballs such as the one at https://github.com/Pylons/webob/zipball/master)

Already-ported Pyramid scaffolding dependencies

Pyramid dependencies removed (and thus didn't need to be ported)

  • zope.component (jbohman factored out "zope.registry" and placed it in zope SVN; also see https://mail.zope.org/pipermail/zope-dev/2011-August/043340.html, this code was later moved to zope.interface in version 3.8.0)
  • zope.configuration (removed core dependency on this in Pyramid 1.2a5+; still dep'ed on by pyramid_zcml)
  • zope.i18nmessageid (transitive dep of zope.configuration; removed z.config dep in Pyramid 1.2a5+)
  • zope.schema (transitive dep of zope.configuration; removed z.config dep in Pyramid 1.2a5+)
  • zope.event (transitive dep of zope.component, will remove zope.component dep)

Related Zope package info: http://permalink.gmane.org/gmane.comp.web.zope.devel/26373

Clone this wiki locally