summaryrefslogtreecommitdiff
path: root/HACKING.txt
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2018-11-18 05:29:39 -0800
committerSteve Piercy <web@stevepiercy.com>2018-11-18 05:29:39 -0800
commit82c2307d738be3b31aa05814e6b3fcbb97f41d18 (patch)
treed61adee386ad6a3b783043428f0c2b529e3a0f9f /HACKING.txt
parentfe1740acba6a9bfe5ac3aed41a9a264a9fd30814 (diff)
downloadpyramid-82c2307d738be3b31aa05814e6b3fcbb97f41d18.tar.gz
pyramid-82c2307d738be3b31aa05814e6b3fcbb97f41d18.tar.bz2
pyramid-82c2307d738be3b31aa05814e6b3fcbb97f41d18.zip
Remove Python 2 and explicit mention of Python 3
Diffstat (limited to 'HACKING.txt')
-rw-r--r--HACKING.txt13
1 files changed, 6 insertions, 7 deletions
diff --git a/HACKING.txt b/HACKING.txt
index acd65e4fd..901eb8518 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -34,10 +34,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.7, 3.4, 3.5,
- 3.6, and 3.7 on both UNIX and Windows.
+- The feature must work fully on the following CPython versions: 3.4, 3.5, 3.6,
+ and 3.7 on both UNIX and Windows.
-- The feature must work on the latest version of PyPy.
+- The feature must work on the latest version of PyPy3.
- The feature must not depend on any particular persistence layer (filesystem,
SQL, etc).
@@ -65,10 +65,9 @@ Running Tests
$ tox -e py37
- This command will run tests on the latest versions of Python 2 and 3 with
- coverage totaled for both versions.
+ This command will run tests on the latest version of Python 3 with coverage.
- $ tox -e py2-cover,py3-cover,coverage
+ $ tox -e py3-cover,coverage
- To run individual tests (i.e., during development), you can use `nosetests`
syntax as follows, where `$VENV` is an environment variable set to the path
@@ -105,7 +104,7 @@ Test Coverage
-------------
- The codebase *must* have 100% test statement coverage after each commit. You
- can test coverage via `tox -epy2-cover,py3-cover,coverage`.
+ can test coverage via `tox -epy3-cover,coverage`.
Documentation Coverage and Building HTML Documentation