File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,6 @@ version: 2.1
4
4
5
5
executors :
6
6
python-27 : {docker: [{image: 'circleci/python:2.7'}]}
7
- python-33 : {docker: [{image: 'circleci/python:3.3'}]}
8
7
python-34 : {docker: [{image: 'circleci/python:3.4'}]}
9
8
python-35 : {docker: [{image: 'circleci/python:3.5'}]}
10
9
python-36 : {docker: [{image: 'circleci/python:3.6'}]}
@@ -19,14 +18,15 @@ jobs:
19
18
working_directory : ~/repo
20
19
steps :
21
20
- checkout
21
+ - run : env
22
22
- restore_cache :
23
23
keys :
24
- - v1-dependencies-<< parameters.executor >>-{{ checksum "requirements.txt" }}
25
- - v1-dependencies-<< parameters.executor >>
24
+ - v1-dependencies-{{ checksum "requirements.txt" }}
26
25
- run :
27
26
name : install dependencies
28
27
command : |
29
- python -m venv venv
28
+ pip install virtualenv
29
+ virtualenv venv
30
30
. venv/bin/activate
31
31
python setup.py install
32
32
- save_cache :
@@ -43,7 +43,6 @@ workflows:
43
43
run-tests :
44
44
jobs :
45
45
- build : {name: run-tests-python-2.7, executor: python-27}
46
- - build : {name: run-tests-python-3.3, executor: python-33}
47
46
- build : {name: run-tests-python-3.5, executor: python-34}
48
47
- build : {name: run-tests-python-3.5, executor: python-35}
49
48
- build : {name: run-tests-python-3.6, executor: python-36}
You can’t perform that action at this time.
0 commit comments