We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eefa09 commit 023e42eCopy full SHA for 023e42e
1 file changed
.circle/config.yml circle.yml.circle/config.yml renamed to circle.yml
@@ -1,17 +1,16 @@
1
version: 2
2
jobs:
3
build:
4
- machine:
5
- python:
6
- version: 3.6.2
+ docker:
+ - image: circleci/python:3.6.2
7
working_directory: ~/fdk-python
8
steps:
9
- checkout
10
- restore_cache:
11
key: deps1-{{ .Branch }}-{{ checksum "requirements.txt" }}
12
- run:
13
command: |
14
- python3.6 -m venv venv
+ python3 -m venv venv
15
. venv/bin/activate
16
pip install tox
17
pip install -r requirements.txt
@@ -26,4 +25,4 @@ jobs:
26
25
27
28
29
- tox -py3.6
+ tox -epy3.6
0 commit comments