Skip to content
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

Specify Python version for virtualenv using option #231

Merged
merged 1 commit into from Oct 23, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGES.txt
Expand Up @@ -73,6 +73,10 @@ This changelog is only very rough. For the full changelog please refer to https:

- Fix reST lists [davisagli]

- Specify Python version for virtualenv using option, not command alias, as
alias is not always present [jean]


1.2.4 (2014-10-03)
------------------

Expand Down
4 changes: 2 additions & 2 deletions mastering_plone/about_mastering.rst
Expand Up @@ -172,7 +172,7 @@ To build the documentation follow these steps:

$ git clone https://github.com/plone/training.git --recursive
$ cd training
$ virtualenv-2.7 .
$ virtualenv --python=python2.7 .
$ source bin/activate

Now install dependencies and build.
Expand All @@ -191,7 +191,7 @@ Build new

$ git clone https://github.com/plone/training.git --recursive
$ cd training
$ virtualenv-2.7 .
$ virtualenv --python=python2.7 .
$ source bin/activate
$ pip install -r requirements.txt
$ make html
Expand Down
2 changes: 1 addition & 1 deletion plone_training_config/instructions.rst
Expand Up @@ -53,7 +53,7 @@ Set up Plone for the training like this if you use your own OS (Linux or Mac):
$ cd training
$ git clone https://github.com/collective/training_buildout.git buildout
$ cd buildout
$ virtualenv-2.7 py27 or virtualenv --python=python2.7 py27
$ virtualenv --python=python2.7 py27

Now you can run the buildout for the first time:

Expand Down