@@ -70,27 +70,27 @@ test their code.
70
70
of the versions you wish to test against. A list of available versions
71
71
is available on [python.org](https://www.python.org/doc/versions/)
72
72
73
- As of January 8 , 2020, the latest Python versions are:
73
+ As of September 9 , 2020, the latest Python versions are:
74
74
75
- * 2.7.17 (latest 2.7.x release)
75
+ * 2.7.18 (latest 2.7.x release)
76
76
```console
77
- $ pyenv install 2.7.17
77
+ $ pyenv install 2.7.18
78
78
```
79
79
* 3.5.9 (latest 3.5.x release)
80
80
```console
81
81
$ pyenv install 3.5.9
82
82
```
83
- * 3.6.10 (latest 3.6.x release)
83
+ * 3.6.11 (latest 3.6.x release)
84
84
```console
85
- $ pyenv install 3.6.10
85
+ $ pyenv install 3.6.11
86
86
```
87
- * 3.7.6 (latest 3.7.x release)
87
+ * 3.7.8 (latest 3.7.x release)
88
88
```console
89
- $ pyenv install 3.7.6
89
+ $ pyenv install 3.7.8
90
90
```
91
- * 3.8.1 (latest 3.8.x release)
91
+ * 3.8.5 (latest 3.8.x release)
92
92
```console
93
- $ pyenv install 3.8.1
93
+ $ pyenv install 3.8.5
94
94
```
95
95
96
96
> ℹ️ *Note*: If you are getting errors installing a python version,
@@ -113,11 +113,11 @@ test their code.
113
113
Pyenv allows you to configure the priority order for your python installs.
114
114
115
115
```
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
117
117
```
118
118
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
121
121
version.
122
122
123
123
## Python virtual environments
@@ -153,10 +153,10 @@ created virtual environment. You can install this by running
153
153
cd ~/src/python-docs-samples
154
154
```
155
155
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`.
157
157
158
158
```console
159
- pyenv virtualenv 3.8.1 python-docs-samples
159
+ pyenv virtualenv 3.8.5 python-docs-samples
160
160
```
161
161
162
162
This creates a virtualenv folder within `~/.pyenv/versions/`.
@@ -165,7 +165,7 @@ created virtual environment. You can install this by running
165
165
166
166
```console
167
167
# 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
169
169
```
170
170
171
171
1. Now, when you `cd` into the source directory or a subdirectory within it,
0 commit comments