Steve Piercy
2015-12-23 169dba5c7aa02db2e48cecff8b8126b767fdf327
- Add Python compatibility to history, hacking, releasing
- Use 1.X for version number
3 files modified
26 ■■■■■ changed files
HACKING.txt 8 ●●●● patch | view | raw | blame | history
HISTORY.txt 4 ●●●● patch | view | raw | blame | history
RELEASING.txt 14 ●●●● patch | view | raw | blame | history
HACKING.txt
@@ -124,10 +124,10 @@
- The feature must be documented in both the API and narrative
  documentation (in ``docs/``).
- The feature must work fully on the following CPython versions: 2.6,
  2.7, 3.2, and 3.3 on both UNIX and Windows.
- The feature must work fully on the following CPython versions: 2.6, 2.7, 3.2,
  3.3, 3.4, and 3.5 on both UNIX and Windows.
- The feature must work on the latest version of PyPy.
- The feature must work on the latest version of PyPy and PyPy3.
- The feature must not cause installation or runtime failure on App Engine.
  If it doesn't cause installation or runtime failure, but doesn't actually
@@ -199,7 +199,7 @@
  Alternately::
   $ tox -e{py26,py27,py32,py33,py34,pypy,pypy3}-scaffolds,
   $ tox -e{py26,py27,py32,py33,py34,py35,pypy,pypy3}-scaffolds,
Test Coverage
-------------
HISTORY.txt
@@ -1,6 +1,8 @@
1.5 (2014-04-08)
================
- Python 3.4 compatibility.
- Avoid crash in ``pserve --reload`` under Py3k, when iterating over possibly
  mutated ``sys.modules``.
@@ -1130,6 +1132,8 @@
Features
--------
- Python 3.3 compatibility.
- Configurator.add_directive now accepts arbitrary callables like partials or
  objects implementing ``__call__`` which dont have ``__name__`` and
  ``__doc__`` attributes.  See https://github.com/Pylons/pyramid/issues/621
RELEASING.txt
@@ -15,7 +15,7 @@
- Run tests on Windows if feasible.
- Make sure all scaffold tests pass (Py 2.6, 2.7, 3.2, 3.3, 3.4, pypy, and
- Make sure all scaffold tests pass (Py 2.6, 2.7, 3.2, 3.3, 3.4, 3.5, pypy, and
  pypy3 on UNIX; this doesn't work on Windows):
  $ ./scaffoldtests.sh
@@ -69,22 +69,22 @@
Announcement template
----------------------
Pyramid 1.1.X has been released.
Pyramid 1.X.X has been released.
Here are the changes:
<<changes>>
A "What's New In Pyramid 1.1" document exists at
http://docs.pylonsproject.org/projects/pyramid/1.1/whatsnew-1.1.html .
A "What's New In Pyramid 1.X" document exists at
http://docs.pylonsproject.org/projects/pyramid/1.X/whatsnew-1.X.html .
You will be able to see the 1.1 release documentation (across all
You will be able to see the 1.X release documentation (across all
alphas and betas, as well as when it eventually gets to final release)
at http://docs.pylonsproject.org/projects/pyramid/1.1/ .
at http://docs.pylonsproject.org/projects/pyramid/1.X/ .
You can install it via PyPI:
  easy_install Pyramid==1.1a4
  easy_install Pyramid==1.X
Enjoy, and please report any issues you find to the issue tracker at
https://github.com/Pylons/pyramid/issues