Skip to content

Commit 023e42e

Browse files
committed
Fixing CircleCI again
1 parent 7eefa09 commit 023e42e

1 file changed

Lines changed: 4 additions & 5 deletions

File tree

.circle/config.yml renamed to circle.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,16 @@
11
version: 2
22
jobs:
33
build:
4-
machine:
5-
python:
6-
version: 3.6.2
4+
docker:
5+
- image: circleci/python:3.6.2
76
working_directory: ~/fdk-python
87
steps:
98
- checkout
109
- restore_cache:
1110
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}
1211
- run:
1312
command: |
14-
python3.6 -m venv venv
13+
python3 -m venv venv
1514
. venv/bin/activate
1615
pip install tox
1716
pip install -r requirements.txt
@@ -26,4 +25,4 @@ jobs:
2625
- run:
2726
command: |
2827
. venv/bin/activate
29-
tox -py3.6
28+
tox -epy3.6

0 commit comments

Comments
 (0)