Skip to content

Commit c5e4ae1

Browse files
authored
Merge pull request #164 from scikit-learn-contrib/circleci-python36
Test circleci with python 3.6 instead of 3.5.
2 parents d2de296 + 7b7ffad commit c5e4ae1

File tree

1 file changed

+4
-12
lines changed

1 file changed

+4
-12
lines changed

.circleci/config.yml

+4-12
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,15 @@
11
version: 2
22
jobs:
3-
test_py35:
3+
test:
44
docker:
5-
- image: circleci/python:3.5
5+
- image: circleci/python:3.6
66
steps:
77
- checkout
88
- run: pip install --user tox
9-
- run: ~/.local/bin/tox -e py35
10-
test_py27:
11-
docker:
12-
- image: circleci/python:2.7
13-
steps:
14-
- checkout
15-
- run: pip install --user tox
16-
- run: ~/.local/bin/tox -e py27
9+
- run: ~/.local/bin/tox
1710

1811
workflows:
1912
version: 2
2013
build_and_test:
2114
jobs:
22-
- test_py35
23-
- test_py27
15+
- test

0 commit comments

Comments
 (0)