Skip to content

Commit aad16c5

Browse files
committed
Update werkcer.
1 parent bf21153 commit aad16c5

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

wercker.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,33 @@ box: python:2.7-slim
22

33
build:
44
steps:
5+
6+
build-py2:
7+
box: python:2.7-slim
8+
steps:
9+
- script:
10+
name: virtualenv install
11+
code: |
12+
pip install virtualenv
13+
14+
- virtualenv:
15+
name: setup virtual environment
16+
install_wheel: true # Enable wheel to speed up builds (experimental)
17+
18+
- script:
19+
name: echo python information
20+
code: |
21+
echo "python version $(python --version) running"
22+
echo "pip version $(pip --version) running"
23+
24+
- script:
25+
name: build
26+
code: |
27+
python setup.py sdist bdist_wheel
28+
29+
build-py3:
30+
box: python:3.6-slim
31+
steps:
532
- script:
633
name: virtualenv install
734
code: |

0 commit comments

Comments
 (0)