Skip to content
This repository has been archived by the owner on Apr 4, 2019. It is now read-only.

doc: add description for using python2 with python3 #153

Merged
merged 1 commit into from
Mar 2, 2018
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
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Please refer to [The Black Belt Documentation](http://black-belt.readthedocs.org
`virtualenv` assumed (`sudo pip install virtualenv`) and Python 2.7

```
virtualenv venv
virtualenv --python=/usr/local/bin/python2.7 venv
source venv/bin/activate
pip install paver
pip install -r requirements-development.txt
Expand All @@ -28,6 +28,10 @@ paver test
If you ran `bb init` and you want to do "discovery testing" with the integration tests,
set `FORCE_DISCOVERY`environment variable to `1`.

### Troubleshooting

If you try run `paver bump` and get error `TypeError: 'map' object is not subscriptable` you can run `./venv/bin/paver bump` to fix this.

### Release

When the time is right, run `paver bump`.
Expand Down