summaryrefslogtreecommitdiff
path: root/HACKING.txt
diff options
context:
space:
mode:
authorSteve Piercy <web@stevepiercy.com>2020-11-02 22:38:25 -0800
committerSteve Piercy <web@stevepiercy.com>2020-11-02 22:38:25 -0800
commitab40bda27ddf607d60de6d73229f56b8b8203981 (patch)
tree1c9d64c9dcf5205bd8f354245c70702fdeb5b6a6 /HACKING.txt
parentea0bd6538097d3e8b840bc2f7fdde45227cfefea (diff)
downloadpyramid-ab40bda27ddf607d60de6d73229f56b8b8203981.tar.gz
pyramid-ab40bda27ddf607d60de6d73229f56b8b8203981.tar.bz2
pyramid-ab40bda27ddf607d60de6d73229f56b8b8203981.zip
Add support for Python 3.9
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 730d08208..7bf05080c 100644
--- a/HACKING.txt
+++ b/HACKING.txt
@@ -50,7 +50,7 @@ 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: 3.5, 3.6, 3.7, and 3.8 on both UNIX and Windows.
+- The feature must work fully on the following CPython versions: 3.5, 3.6, 3.7, 3.8, and 3.9 on both UNIX and Windows.
- The feature must work on the latest version of PyPy3.
@@ -80,9 +80,9 @@ Running Tests
$ $TOX -e py
- To run `tox` for Python 3.8 explicitly, you may use:
+ To run `tox` for Python 3.9 explicitly, you may use:
- $ $TOX -e py38
+ $ $TOX -e py39
- To run individual tests (i.e., during development), you can use `pytest`
syntax as follows, where `$VENV` is an environment variable set to the path
@@ -103,7 +103,7 @@ Test Coverage
-------------
- The codebase *must* have 100% test statement coverage after each commit. You
- can test coverage via `tox -e py38`.
+ can test coverage via `tox -e py39`.
Documentation Coverage and Building HTML Documentation