We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bf21153 commit aad16c5Copy full SHA for aad16c5
wercker.yml
@@ -2,6 +2,33 @@ box: python:2.7-slim
2
3
build:
4
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
19
+ name: echo python information
20
21
+ echo "python version $(python --version) running"
22
+ echo "pip version $(pip --version) running"
23
24
25
+ name: build
26
27
+ python setup.py sdist bdist_wheel
28
29
+build-py3:
30
+ box: python:3.6-slim
31
32
- script:
33
name: virtualenv install
34
code: |
0 commit comments