summaryrefslogtreecommitdiff
path: root/HACKING.txt
diff options
context:
space:
mode:
authorMichael Merickel <mmerickel@users.noreply.github.com>2016-09-12 20:26:48 -0500
committerGitHub <noreply@github.com>2016-09-12 20:26:48 -0500
commit4d40a4db8f5a02fd6e373d789014fac697687d57 (patch)
tree55f0b6d7f43812e0f7899105c2410df040c2549e /HACKING.txt
parentc4e2dad38a5060e38fe2d97616d084206ded479c (diff)
parentbcde3d6caded35d8d64e6e7acf3bf5b2a8501260 (diff)
downloadpyramid-4d40a4db8f5a02fd6e373d789014fac697687d57.tar.gz
pyramid-4d40a4db8f5a02fd6e373d789014fac697687d57.tar.bz2
pyramid-4d40a4db8f5a02fd6e373d789014fac697687d57.zip
Merge pull request #2759 from mmerickel/drop-py33
drop support for python 3.3 and error on 2.6
Diffstat (limited to 'HACKING.txt')
-rw-r--r--HACKING.txt8
1 files changed, 4 insertions, 4 deletions
diff --git a/HACKING.txt b/HACKING.txt
index 5bbdce0c6..4b237b56c 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -124,10 +124,10 @@ In order to add a feature to Pyramid:
- 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,
- 3.3, 3.4, and 3.5 on both UNIX and Windows.
+- The feature must work fully on the following CPython versions: 2.7, 3.4,
+ and 3.5 on both UNIX and Windows.
-- The feature must work on the latest version of PyPy and PyPy3.
+- The feature must work on the latest version of PyPy.
- 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 @@ Running Tests
Alternately::
- $ tox -e{py26,py27,py32,py33,py34,py35,pypy,pypy3}-scaffolds,
+ $ tox -e{py27,py34,py35,pypy}-scaffolds,
Test Coverage
-------------