diff options
author | Aaron LI <aaronly.me@outlook.com> | 2016-10-29 22:57:40 +0800 |
---|---|---|
committer | Aaron LI <aaronly.me@outlook.com> | 2016-10-29 22:57:40 +0800 |
commit | d078c1ae3f7171e9e8252474ce5dbaef37a26281 (patch) | |
tree | 8ac4cd1f5faa517bc0a59371f22fc589454efc52 /Makefile | |
parent | 5f15114452c9ba70d965ef36e46df410621b1caa (diff) | |
download | fg21sim-d078c1ae3f7171e9e8252474ce5dbaef37a26281.tar.bz2 |
Makefile: Use the built-in "venv" module available at Python >=3.3
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -27,7 +27,7 @@ default: # Create virtualenv and install/update the dependencies venv: ${VENV}/bin/activate ${VENV}/bin/activate: requirements.txt - test -d ./${VENV} || virtualenv --python=python3 ${VENV} + test -d ./${VENV} || python3 -m venv ${VENV} ./${VENV}/bin/pip3 install -r requirements.txt touch ${VENV}/bin/activate |