@@ -70,27 +70,27 @@ test their code.
7070 of the versions you wish to test against. A list of available versions
7171 is available on [python.org](https://www.python.org/doc/versions/)
7272
73- As of January 8 , 2020, the latest Python versions are:
73+ As of September 9 , 2020, the latest Python versions are:
7474
75- * 2.7.17 (latest 2.7.x release)
75+ * 2.7.18 (latest 2.7.x release)
7676 ```console
77- $ pyenv install 2.7.17
77+ $ pyenv install 2.7.18
7878 ```
7979 * 3.5.9 (latest 3.5.x release)
8080 ```console
8181 $ pyenv install 3.5.9
8282 ```
83- * 3.6.10 (latest 3.6.x release)
83+ * 3.6.11 (latest 3.6.x release)
8484 ```console
85- $ pyenv install 3.6.10
85+ $ pyenv install 3.6.11
8686 ```
87- * 3.7.6 (latest 3.7.x release)
87+ * 3.7.8 (latest 3.7.x release)
8888 ```console
89- $ pyenv install 3.7.6
89+ $ pyenv install 3.7.8
9090 ```
91- * 3.8.1 (latest 3.8.x release)
91+ * 3.8.5 (latest 3.8.x release)
9292 ```console
93- $ pyenv install 3.8.1
93+ $ pyenv install 3.8.5
9494 ```
9595
9696 > ℹ️ *Note*: If you are getting errors installing a python version,
@@ -113,11 +113,11 @@ test their code.
113113Pyenv allows you to configure the priority order for your python installs.
114114
115115```
116- pyenv global 3.8.1 3.7.6 3.6.10 3.5.9 2.7.17
116+ pyenv global 3.8.5 3.7.8 3.6.11 3.5.9 2.7.18
117117```
118118
119- This will make python and python3 point to Python 3.8.1 . python2 will use
120- 2.7.17 . You can also further specify versions, such as python3.6 to use that
119+ This will make python and python3 point to Python 3.8.5 . python2 will use
120+ 2.7.18 . You can also further specify versions, such as python3.6 to use that
121121version.
122122
123123## Python virtual environments
@@ -153,10 +153,10 @@ created virtual environment. You can install this by running
153153 cd ~/src/python-docs-samples
154154 ```
155155
156- 1. Create a virtualenv for python 3.8.1 using `pyenv virtualenv`.
156+ 1. Create a virtualenv for python 3.8.5 using `pyenv virtualenv`.
157157
158158 ```console
159- pyenv virtualenv 3.8.1 python-docs-samples
159+ pyenv virtualenv 3.8.5 python-docs-samples
160160 ```
161161
162162 This creates a virtualenv folder within `~/.pyenv/versions/`.
@@ -165,7 +165,7 @@ created virtual environment. You can install this by running
165165
166166 ```console
167167 # pyenv local [name of virtualenv] [list of python versions to use]
168- pyenv local python-docs-samples 3.8.1 3.7.6 3.6.10 3.5.9 2.7.17
168+ pyenv local python-docs-samples 3.8.5 3.7.8 3.6.11 3.5.9 2.7.18
169169 ```
170170
1711711. Now, when you `cd` into the source directory or a subdirectory within it,
0 commit comments