chiark / gitweb /
Merge branch 'fix-virtualenv' into 'master'
authorDaniel Martí <mvdan@mvdan.cc>
Thu, 14 Apr 2016 08:04:28 +0000 (08:04 +0000)
committerDaniel Martí <mvdan@mvdan.cc>
Thu, 14 Apr 2016 08:04:28 +0000 (08:04 +0000)
commit1539b6753731425021437bcddd584c354c8f3193
tree8f0ea892cc045d0e944a1f93d7a0e074e9628d8f
parente2ea213887be104841b0a73f809570e72d21572f
parent0da94fbf58f61bc5a76d6db4f7fdb7b709916957
Merge branch 'fix-virtualenv' into 'master'

Prefer pyvenv instead of virtualenv for Python 3.3+

`virtualenv` uses python2 by default on my machine.
Using `pyvenv` (see https://docs.python.org/3/library/venv.html#module-venv) instead of `virtualenv` fixes the problem and let's me perform `python3 setup.py install` in the virtual environment.

See merge request !119