Skip to content

Commit f0c3a67

Browse files
author
cclauss
authored
virtualenv not venv for Python 2
1 parent 57f975e commit f0c3a67

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

circle.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ jobs:
1111
command: |
1212
python -m venv venv
1313
. venv/bin/activate
14+
pwd
1415
python -V
1516
pip -V
1617
pip install hacking
@@ -27,8 +28,9 @@ jobs:
2728
- run:
2829
name: Flake8 and unittests on Python 2.7.13
2930
command: |
30-
python -m venv venv
31-
. venv/bin/activate
31+
pip install virtualenv
32+
virtualenv sc2reader
33+
pwd
3234
python -V
3335
pip -V
3436
pip install hacking

0 commit comments

Comments
 (0)