Skip to content

Commit 2930e8e

Browse files
committed
Merge pull request #44 from launchdarkly/pk/fix-python3.3
fix python3.3 build
2 parents d7f5f64 + 25fe267 commit 2930e8e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

circle.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
dependencies:
22
pre:
3-
- pyenv shell 2.7.10; $(pyenv which pip) install --upgrade pip
4-
- pyenv shell 3.3.3; $(pyenv which pip) install --upgrade pip
5-
- pyenv shell 3.4.2; $(pyenv which pip) install --upgrade pip
3+
- pyenv shell 2.7.10; $(pyenv which pip) install --upgrade pip setuptools
4+
- pyenv shell 3.3.3; $(pyenv which pip) install --upgrade pip setuptools
5+
- pyenv shell 3.4.2; $(pyenv which pip) install --upgrade pip setuptools
6+
67
- pyenv shell 2.7.10; $(pyenv which pip) install -r test-requirements.txt
78
- pyenv shell 3.3.3; $(pyenv which pip) install -r test-requirements.txt
89
- pyenv shell 3.4.2; $(pyenv which pip) install -r test-requirements.txt
10+
911
- pyenv shell 2.7.10; $(pyenv which pip) install -r twisted-requirements.txt
1012
- pyenv shell 3.3.3; $(pyenv which pip) install -r twisted-requirements.txt
1113
- pyenv shell 3.4.2; $(pyenv which pip) install -r twisted-requirements.txt
14+
1215
- pyenv shell 2.7.10; $(pyenv which python) setup.py install
1316
- pyenv shell 3.3.3; $(pyenv which python) setup.py install
1417
- pyenv shell 3.4.2; $(pyenv which python) setup.py install

0 commit comments

Comments
 (0)