Skip to content

Commit

Permalink
Merge pull request kubernetes-client#1472 from yliaog/master
Browse files Browse the repository at this point in the history
replaced 2.7.12 with 3.9.1 version, as python 2 has come to end of life
  • Loading branch information
k8s-ci-robot committed May 24, 2021
2 parents 821618f + 9a7d129 commit 44b2325
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions devel/release.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ this step and go back to the master branch if there are any API changes.
## Make distribution packages

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

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

```bash
git clean -xdf
pyenv install -s 2.7.12
pyenv global 2.7.12
pyenv install -s 3.9.1
pyenv global 3.9.1
virtualenv .release
source .release/bin/activate
python --version # Make sure you get Python 2.7.12
python --version # Make sure you get Python 3.9.1
pip install twine
```

Expand Down

0 comments on commit 44b2325

Please sign in to comment.