Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 9a7d129

Browse files
committed
replaced 2.7.12 with 3.9.1 version, as python 2 has come to end of life
1 parent 821618f commit 9a7d129

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

devel/release.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ this step and go back to the master branch if there are any API changes.
140140
## Make distribution packages
141141

142142
First make sure you are using a clean version of python. Use virtualenv and
143-
pyenv packages. Make sure you are using python 2.7.12. I would normally do this
143+
pyenv packages. Make sure you are using python 3.9.1. I would normally do this
144144
on a clean machine:
145145

146146
(install [pyenv](https://github.com/yyuu/pyenv#installation))
@@ -149,11 +149,11 @@ on a clean machine:
149149

150150
```bash
151151
git clean -xdf
152-
pyenv install -s 2.7.12
153-
pyenv global 2.7.12
152+
pyenv install -s 3.9.1
153+
pyenv global 3.9.1
154154
virtualenv .release
155155
source .release/bin/activate
156-
python --version # Make sure you get Python 2.7.12
156+
python --version # Make sure you get Python 3.9.1
157157
pip install twine
158158
```
159159

0 commit comments

Comments
 (0)