File tree Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Expand file tree Collapse file tree 2 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 2323 - TOXENV=py34-django18
2424 - TOXENV=py27-django19
2525 - TOXENV=py34-django19
26+ - TOXENV=py34-django110
2627# Python 3.5 has to go here until Travis adds it to the default build images.
2728# https://github.com/travis-ci/travis-ci/issues/4794#issuecomment-143758799
2829matrix :
Original file line number Diff line number Diff line change @@ -8,22 +8,22 @@ ENV ?= venv
88
99requirements = -r requirements-dev.txt
1010
11- # List directories
12- dist_dir = dist
13- clean_dirs = $(PROJECT ) $(ENV ) $(tests_dir ) $(shell [ -d $(tox_dir ) ] && echo $(tox_dir ) || :)
14-
1511all : install build
1612
1713clean :
18- find webpack_loader/ -name ' *.pyc' -delete
19- rm -rf ./build ./* egg* ./.coverage
14+ @echo " Cleaning..."
15+ @find webpack_loader/ -name ' *.pyc' -delete
16+ @rm -rf ./build ./* egg* ./.coverage ./dist
2017
2118build : clean
22- python setup.py sdist bdist_wheel --universal
19+ @echo " Building..."
20+ @python setup.py sdist bdist_wheel --universal
2321
2422install :
25- [ ! -d $( ENV) / ] && virtualenv $(ENV ) / || :
26- $(ENV ) /bin/pip install $(requirements )
23+ @echo " Installing build dependencies"
24+ @[ ! -d $( ENV) / ] && virtualenv $(ENV ) / || :
25+ @$(ENV ) /bin/pip install $(requirements )
2726
2827publish : build
29- $(ENV ) /bin/twine upload dist/*
28+ @echo " Publishing to pypi..."
29+ @$(ENV ) /bin/twine upload dist/*
You can’t perform that action at this time.
0 commit comments