summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTres Seaver <tseaver@palladion.com>2016-03-09 14:09:11 -0500
committerTres Seaver <tseaver@palladion.com>2016-03-09 14:09:55 -0500
commitbe354ebde5c5ebeb2ae8d23800481d4a7649aa4b (patch)
tree649ea6f408bb80542769cbae2065de81068e6585 /docs
parent75b5e1d9e6c022e626b87887182e49860a173e48 (diff)
downloadzope-interface-be354ebde5c5ebeb2ae8d23800481d4a7649aa4b.tar.gz
Drop mention of 'python2.6' from 'docs/hacking.txt'.
Addresses: https://github.com/zopefoundation/zope.interface/pull/33#issuecomment-194454496
Diffstat (limited to 'docs')
-rw-r--r--docs/hacking.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/hacking.rst b/docs/hacking.rst
index 3df9f0c..c483caf 100644
--- a/docs/hacking.rst
+++ b/docs/hacking.rst
@@ -173,7 +173,7 @@ Setting up the buildout
.. code-block:: sh
- $ /path/to/python2.6 bootstrap.py
+ $ /path/to/python2.7 bootstrap.py
...
Generated script '.../bin/buildout'
$ bin/buildout
@@ -217,16 +217,16 @@ its ``tox.ini`` file:
installs :mod:`zope.interface` and dependencies, and runs the tests
via ``python setup.py test -q``.
-- The ``coverage`` environment builds a ``virtualenv`` with ``python2.6``,
+- The ``coverage`` environment builds a ``virtualenv`` with ``python2.7``,
installs :mod:`zope.interface` and dependencies, installs
:mod:`nose` and :mod:`coverage`, and runs ``nosetests`` with statement
coverage.
-- The ``docs`` environment builds a virtualenv with ``python2.6``, installs
+- The ``docs`` environment builds a virtualenv with ``python2.7``, installs
:mod:`zope.interface` and dependencies, installs ``Sphinx`` and
dependencies, and then builds the docs and exercises the doctest snippets.
-This example requires that you have a working ``python2.6`` on your path,
+This example requires that you have a working ``python2.7`` on your path,
as well as installing ``tox``:
.. code-block:: sh