We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c84982d commit 5ac1ab4Copy full SHA for 5ac1ab4
wercker.yml
@@ -7,10 +7,6 @@ build:
7
code: |
8
pip install virtualenv
9
10
- - virtualenv:
11
- name: setup virtual environment
12
- install_wheel: true # Enable wheel to speed up builds (experimental)
13
-
14
- script:
15
name: echo python information
16
@@ -20,6 +16,10 @@ build:
20
21
17
name: build
22
18
19
+ export VIRTUALENV_LOCATION=$HOME/venv
+ virtualenv --no-site-packages -p $(which python) $VIRTUALENV_LOCATION
+ source "$VIRTUALENV_LOCATION/bin/activate"
+
23
python setup.py sdist bdist_wheel
24
25
deploy:
0 commit comments