Skip to content

Commit 312cb56

Browse files
committed
Update documentation
1 parent 27a5816 commit 312cb56

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

docs/development/docs.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,14 @@ you may want to verify those changes locally before pushing upstream.
3131
3232
$ git clone --recurse-submodules https://github.com/readthedocs/readthedocs.org/
3333
34-
#. create a virtual environment with Python 3.6
35-
(preferably the latest release, 3.6.15 at the time of writing),
34+
#. create a virtual environment with Python 3.8
35+
(preferably the latest release, 3.8.12 at the time of writing),
3636
activate it, and upgrade both pip and setuptools:
3737

3838
.. code-block:: console
3939
4040
$ cd readthedocs.org
41-
$ python3.6 -m venv .venv
41+
$ python3.8 -m venv .venv
4242
$ source .venv/bin/activate
4343
(.venv) $ python -m pip install -U pip setuptools
4444

docs/development/install.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ save some work while typing docker compose commands. This section explains these
142142
``inv docker.test``
143143
Runs all the test suites inside the container.
144144

145-
* ``--arguments`` will pass arguments to Tox command (e.g. ``--arguments "-e py36 -- -k test_api"``)
145+
* ``--arguments`` will pass arguments to Tox command (e.g. ``--arguments "-e py38 -- -k test_api"``)
146146

147147
``inv docker.pull``
148148
Downloads and tags all the Docker images required for builders.

docs/development/tests.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,13 @@ To target a specific environment:
4646

4747
.. prompt:: bash
4848

49-
tox -e py36
49+
tox -e py38
5050

5151
The ``tox`` configuration has the following environments configured. You can
5252
target a single environment to limit the test suite:
5353

54-
py36
55-
Run our test suite using Python 3.6
54+
py38
55+
Run our test suite using Python 3.8
5656

5757
lint
5858
Run code linting using `Prospector`_. This currently runs `pylint`_,

0 commit comments

Comments
 (0)