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 23
23
- TOXENV=py34-django18
24
24
- TOXENV=py27-django19
25
25
- TOXENV=py34-django19
26
+ - TOXENV=py34-django110
26
27
# Python 3.5 has to go here until Travis adds it to the default build images.
27
28
# https://github.com/travis-ci/travis-ci/issues/4794#issuecomment-143758799
28
29
matrix :
Original file line number Diff line number Diff line change @@ -8,22 +8,22 @@ ENV ?= venv
8
8
9
9
requirements = -r requirements-dev.txt
10
10
11
- # List directories
12
- dist_dir = dist
13
- clean_dirs = $(PROJECT ) $(ENV ) $(tests_dir ) $(shell [ -d $(tox_dir ) ] && echo $(tox_dir ) || :)
14
-
15
11
all : install build
16
12
17
13
clean :
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
20
17
21
18
build : clean
22
- python setup.py sdist bdist_wheel --universal
19
+ @echo " Building..."
20
+ @python setup.py sdist bdist_wheel --universal
23
21
24
22
install :
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 )
27
26
28
27
publish : 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