From 74493e161673761538bcfd5a53eb58cef13a7237 Mon Sep 17 00:00:00 2001 From: Alex Clark Date: Thu, 24 Mar 2016 07:44:42 -0400 Subject: [PATCH] Add install-venv makefile target [ci skip] - Creates a venv, runs pip install --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index 24b8c5f6b..b707f0766 100644 --- a/Makefile +++ b/Makefile @@ -33,6 +33,7 @@ help: @echo " inplace make inplace extension" @echo " install make and install" @echo " install-req install documentation and test dependencies" + @echo " install-venv install in virtualenv" @echo " release-test run code and package tests before release" @echo " test run tests on installed pillow" @echo " upload build and upload sdists to PyPI" @@ -48,6 +49,8 @@ install: install-req: pip install -r requirements.txt +install-venv: venv install-req + release-test: $(MAKE) install-req python setup.py develop @@ -76,5 +79,8 @@ upload-test: upload: python setup.py sdist --format=gztar,zip upload +venv: + virtualenv . + readme: viewdoc