diff options
| author | Chris McDonough <chrism@plope.com> | 2011-10-06 05:40:47 -0400 |
|---|---|---|
| committer | Chris McDonough <chrism@plope.com> | 2011-10-06 05:40:47 -0400 |
| commit | 75f05a60f8754c9c5c234b9731dbc08646ba89a9 (patch) | |
| tree | dd94d6580df36d554655a20aa9f874439cfe9fb9 | |
| parent | eb1fc1689705c9d93149abf2f108f8fb15d72c4b (diff) | |
| download | pyramid-75f05a60f8754c9c5c234b9731dbc08646ba89a9.tar.gz pyramid-75f05a60f8754c9c5c234b9731dbc08646ba89a9.tar.bz2 pyramid-75f05a60f8754c9c5c234b9731dbc08646ba89a9.zip | |
document glue changes
| -rw-r--r-- | CHANGES.txt | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/CHANGES.txt b/CHANGES.txt index 047db6472..2e2b2291d 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -16,6 +16,20 @@ Backwards Incompatibilities - Pyramid no longer runs on Python 2.5 (which includes the most recent release of Jython, and the current version of GAE). +- The ``paster`` command is no longer the documented way to create projects, + start the server, or run debugging commands. To create projects from + scaffolds, ``paster create`` is replaced by the ``pcreate`` console script. + To serve up a project, ``paster serve`` is replaced by the ``pserve`` + console script. New console scripts named ``pshell``, ``pviews``, + ``proutes``, and ``ptweens`` do what their ``paster <commandname>`` + equivalents used to do. Rationale: the Paste and PasteScript packages do + not run under Python 3. + +- The default WSGI server run as the result of ``pserve`` from newly rendered + scaffolding is now the ``wsgiref`` WSGI server instead of the + ``paste.httpserver`` server. Rationale: Rationale: the Paste and + PasteScript packages do not run under Python 3. + Dependencies ------------ @@ -27,3 +41,6 @@ Dependencies Python 3 compatibility purposes). It also, as a testing dependency, depends on WebTest>=1.3.1 for the same reason. +- Pyramid no longer depends on the Paste or PasteScript packages. + + |
