Skip to content

replaced 2.7.12 with 3.9.1 version, as python 2 has come to end of life #1472

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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